about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-02-13 09:28:10 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-02-22 14:13:16 -0500
commitd7c02c39e5cc759eb8aacb1f96ad23a7777b68fb (patch)
treed1ca7d28985456c4043b9d2c4a81f4f9c9345ec0 /src/doc/reference.md
parentcf636c233dfeef5abf0de8fb35e23c0a161810d2 (diff)
downloadrust-d7c02c39e5cc759eb8aacb1f96ad23a7777b68fb.tar.gz
rust-d7c02c39e5cc759eb8aacb1f96ad23a7777b68fb.zip
Link from literals to their representation
Fixes #22152
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 9c51f6bad6f..01e4f80eaf0 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -518,6 +518,9 @@ This last example is different because it is not possible to use the suffix
 syntax with a floating point literal ending in a period. `2.f64` would attempt
 to call a method named `f64` on `2`.
 
+The representation semantics of floating-point numbers are described in
+["Machine Types"](#machine-types).
+
 #### Boolean literals
 
 The two values of the boolean type are written `true` and `false`.