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
{-| 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

View file

@ -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

View file

@ -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

View file

@ -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