From 68101742c97691216e7d87589ddf2a7ba5177f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A9nes=20Harmath?= Date: Wed, 30 Oct 2013 16:19:02 +0100 Subject: [PATCH] Fix grammar --- libraries/Text.elm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libraries/Text.elm b/libraries/Text.elm index 1f8b6c1..1491b5e 100644 --- a/libraries/Text.elm +++ b/libraries/Text.elm @@ -1,4 +1,3 @@ - module Text where {-| Functions for displaying text @@ -31,7 +30,7 @@ toText : String -> Text toText = Native.Text.toText {-| Set the typeface of some text. The first argument should be a comma -separated listing of the desired typefaces +separated listing of the desired typefaces: "helvetica, arial, sans-serif" @@ -104,12 +103,12 @@ plainText = Native.Text.plainText markdown : Element markdown = Native.Text.markdown -{-| Convert anything to it's textual representation and make it displayable in -browser +{-| Convert anything to its textual representation and make it displayable in +browser: asText == text . monospace . show Excellent for debugging. -} asText : a -> Element -asText = Native.Text.asText \ No newline at end of file +asText = Native.Text.asText