Get rid of broken links in docs

This commit is contained in:
Evan Czaplicki 2014-03-23 17:21:44 -07:00
parent a94c868518
commit 1dd651ecbf
4 changed files with 7 additions and 11 deletions

View file

@ -52,8 +52,8 @@ toLocaleLower = Native.Char.toLocaleLower
type KeyCode = Int type KeyCode = Int
{-| Convert to unicode. Used with the [`Keyboard`](/docs/Keyboard.elm) {-| Convert to unicode. Used with the `Keyboard` library, which expects the
library, which expects the input to be uppercase. -} input to be uppercase. -}
toCode : Char -> KeyCode toCode : Char -> KeyCode
toCode = Native.Char.toCode toCode = Native.Char.toCode

View file

@ -1,8 +1,6 @@
module Http where module Http where
{-| A library for asynchronous HTTP requests. See the `WebSocket`
{-| A library for asynchronous HTTP requests. See the library if you have very strict latency requirements.
[WebSocket](http://elm-lang.org/docs/WebSocket.elm) library if
you have very strict latency requirements.
# Sending Requests # Sending Requests
@docs send, sendGet @docs send, sendGet

View file

@ -1,5 +1,4 @@
module Keyboard where module Keyboard where
{-| Library for working with keyboard input. {-| Library for working with keyboard input.
# Representing Keys # Representing Keys
@ -20,9 +19,8 @@ import Signal (Signal)
import Native.Keyboard import Native.Keyboard
{-| Type alias to make it clearer what integers are supposed to represent {-| Type alias to make it clearer what integers are supposed to represent
in this library. Use [`Char.toCode`](docs/Char.elm#toCode) and in this library. Use `Char.toCode` and `Char.fromCode` to convert key codes
[`Char.fromCode`](/docs/Char.elm#fromCode) to convert key codes to characters. to characters. Use the uppercase character with `toCode`.
Use the uppercase character with `toCode`.
-} -}
type KeyCode = Int type KeyCode = Int

View file

@ -10,7 +10,7 @@ past-dependence.
Some useful functions for working with time (e.g. setting FPS) and combining 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 signals and time (e.g. delaying updates, getting timestamps) can be found in
the [`Time`](/docs/Signal/Time.elm) library. the `Time` library.
# Combine # Combine
@docs constant, lift, lift2, merge, merges, combine @docs constant, lift, lift2, merge, merges, combine