From d7c02c39e5cc759eb8aacb1f96ad23a7777b68fb Mon Sep 17 00:00:00 2001
From: Steve Klabnik <steve@steveklabnik.com>
Date: Fri, 13 Feb 2015 09:28:10 -0500
Subject: [PATCH] Link from literals to their representation

Fixes #22152
---
 src/doc/reference.md | 3 +++
 1 file changed, 3 insertions(+)

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`.