diff --git a/libraries/Color.elm b/libraries/Color.elm index 151ef2a..2ac0b75 100644 --- a/libraries/Color.elm +++ b/libraries/Color.elm @@ -6,7 +6,7 @@ module Color where built-in names. # Creation -@docs rgb, rgba, hsv, hsva, grayscale, greyscale +@docs rgb, rgba, hsv, hsva, greyscale, grayscale # From Other Colors @docs complement diff --git a/libraries/Graphics/Collage.elm b/libraries/Graphics/Collage.elm index 48403a1..45320bb 100644 --- a/libraries/Graphics/Collage.elm +++ b/libraries/Graphics/Collage.elm @@ -125,7 +125,7 @@ tiled to fill the entire shape. textured : String -> Shape -> Form textured src shape = fill (Texture src) shape -{-| Fill a shape with a [gradient](/docs/Color.elm#linear). -} +{-| Fill a shape with a [gradient](/library/Color.elm#linear). -} gradient : Gradient -> Shape -> Form gradient grad shape = fill (Grad grad) shape diff --git a/libraries/Graphics/Element.elm b/libraries/Graphics/Element.elm index 8ce6286..fe60fa4 100644 --- a/libraries/Graphics/Element.elm +++ b/libraries/Graphics/Element.elm @@ -204,9 +204,8 @@ flow dir es = DIn -> newFlow (List.maximum ws) (List.maximum hs) DOut -> newFlow (List.maximum ws) (List.maximum hs) -{-| Stack elements vertically. To put `a` above `b` you would say: - - a `above` b +{-| Stack elements vertically. +To put `a` above `b` you would say: ``a `above` b`` -} above : Element -> Element -> Element above hi lo = @@ -214,9 +213,8 @@ above hi lo = (heightOf hi + heightOf lo) (Flow DDown [hi,lo]) -{-| Stack elements vertically. To put `a` below `b` you would say: - - a `below` b +{-| Stack elements vertically. +To put `a` below `b` you would say: ``a `below` b`` -} below : Element -> Element -> Element below lo hi = @@ -225,6 +223,7 @@ below lo hi = (Flow DDown [hi,lo]) {-| Put elements beside each other horizontally. +To put `a` beside `b` you would say: ``a `beside` b`` -} beside : Element -> Element -> Element beside lft rht = @@ -232,8 +231,8 @@ beside lft rht = (max (heightOf lft) (heightOf rht)) (Flow right [lft,rht]) -{-| Layer elements on top of each other, starting from the bottom. -`(layers == flow outward)` +{-| Layer elements on top of each other, starting from the bottom: +`layers == flow outward` -} layers : [Element] -> Element layers es = diff --git a/libraries/JavaScript.elm b/libraries/JavaScript.elm index 7814c67..c7e1027 100644 --- a/libraries/JavaScript.elm +++ b/libraries/JavaScript.elm @@ -9,7 +9,7 @@ integration. @docs toString, toInt, toFloat, toBool, toList # JavaScript from Elm -@docs fromString, fromInt, fromFloat, fromBool fromList +@docs fromString, fromInt, fromFloat, fromBool, fromList -} {- # DOM Nodes and Elements diff --git a/libraries/Signal.elm b/libraries/Signal.elm index 69a6564..d5882d2 100644 --- a/libraries/Signal.elm +++ b/libraries/Signal.elm @@ -15,15 +15,15 @@ the [`Time`](/docs/Signal/Time.elm) library. # Combine @docs constant, lift, lift2, merge, merges, combine -# Pretty Lift -@docs (<~), (~) - # Past-Dependence @docs foldp, count, countIf #Filters @docs keepIf, dropIf, keepWhen, dropWhen, dropRepeats, sampleOn +# Pretty Lift +@docs (<~), (~) + # Do you even lift? @docs lift3, lift4, lift5, lift6, lift7, lift8