Using elm-format for all files

This commit is contained in:
Eike Kettner
2019-12-29 21:55:12 +01:00
parent 546f1a6ee3
commit 2001cca88b
84 changed files with 7668 additions and 5079 deletions

View File

@ -1,8 +1,9 @@
module Util.Contact exposing (..)
module Util.Contact exposing (toString)
import Api.Model.Contact exposing (Contact)
toString: List Contact -> String
toString : List Contact -> String
toString contacts =
List.map (\c -> c.kind ++ ": " ++ c.value) contacts
|> List.intersperse ", "