Skip to content

Commit

Permalink
fix: comment spacing elm-format hack
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 committed Jan 7, 2025
1 parent 41c796c commit e6482a5
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/elm/Utils/Warnings.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,33 @@ SPDX-License-Identifier: Apache-2.0
--}


module Utils.Warnings exposing (Warning, fromString)
module Utils.Warnings exposing
( Warning
, fromString
)

{-|
@docs Warning
@docs fromString
{-| Warning : an object that represents a point of focus.
-}

-- TYPES


{-| Warning : an object that represents a point of focus.
-}
type alias Warning =
{ maybeLineNumber : Maybe Int
, content : String
}



-- HELPERS


{-| fromString : parses a warning string into a line number and a message.
-}
fromString : String -> Warning
Expand Down

0 comments on commit e6482a5

Please sign in to comment.