diff --git a/libraries/Char.elm b/libraries/Char.elm index c12b2e4..8f442b1 100644 --- a/libraries/Char.elm +++ b/libraries/Char.elm @@ -52,8 +52,8 @@ toLocaleLower = Native.Char.toLocaleLower type KeyCode = Int -{-| Convert to unicode. Used with the [`Keyboard`](/docs/Keyboard.elm) -library, which expects the input to be uppercase. -} +{-| Convert to unicode. Used with the `Keyboard` library, which expects the +input to be uppercase. -} toCode : Char -> KeyCode toCode = Native.Char.toCode diff --git a/libraries/Http.elm b/libraries/Http.elm index 06d3e32..e35a46f 100644 --- a/libraries/Http.elm +++ b/libraries/Http.elm @@ -1,8 +1,6 @@ module Http where - -{-| A library for asynchronous HTTP requests. See the -[WebSocket](http://elm-lang.org/docs/WebSocket.elm) library if -you have very strict latency requirements. +{-| A library for asynchronous HTTP requests. See the `WebSocket` +library if you have very strict latency requirements. # Sending Requests @docs send, sendGet diff --git a/libraries/Keyboard.elm b/libraries/Keyboard.elm index 9aad98e..0a261b5 100644 --- a/libraries/Keyboard.elm +++ b/libraries/Keyboard.elm @@ -1,5 +1,4 @@ module Keyboard where - {-| Library for working with keyboard input. # Representing Keys @@ -20,9 +19,8 @@ import Signal (Signal) import Native.Keyboard {-| Type alias to make it clearer what integers are supposed to represent -in this library. Use [`Char.toCode`](docs/Char.elm#toCode) and -[`Char.fromCode`](/docs/Char.elm#fromCode) to convert key codes to characters. -Use the uppercase character with `toCode`. +in this library. Use `Char.toCode` and `Char.fromCode` to convert key codes +to characters. Use the uppercase character with `toCode`. -} type KeyCode = Int diff --git a/libraries/Signal.elm b/libraries/Signal.elm index 9063e0d..865b847 100644 --- a/libraries/Signal.elm +++ b/libraries/Signal.elm @@ -10,7 +10,7 @@ past-dependence. Some useful functions for working with time (e.g. setting FPS) and combining signals and time (e.g. delaying updates, getting timestamps) can be found in -the [`Time`](/docs/Signal/Time.elm) library. +the `Time` library. # Combine @docs constant, lift, lift2, merge, merges, combine