about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-23 14:43:38 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-23 14:43:38 +0530
commit46a545100a00065570be58ffb4c8ea8cc1a17bc8 (patch)
tree92ab6da6e2a7925400ea1a8cbf617407d3b61897 /src
parentf0f7ca27de6b4e03f30012656dad270cda55a363 (diff)
parentd7c02c39e5cc759eb8aacb1f96ad23a7777b68fb (diff)
downloadrust-46a545100a00065570be58ffb4c8ea8cc1a17bc8.tar.gz
rust-46a545100a00065570be58ffb4c8ea8cc1a17bc8.zip
Rollup merge of #22270 - steveklabnik:gh22152, r=huonw
 Fixes #22152
Diffstat (limited to 'src')
-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 e6ff29799f4..f8bc151ee7f 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -515,6 +515,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`.