about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorxales <xales@naveria.com>2014-01-25 11:16:55 -0500
committerxales <xales@naveria.com>2014-01-25 11:16:55 -0500
commit5d2ef31af97dca3cc2a13225b0e00c4fbcd90e49 (patch)
tree07facce296fd15882842706d7e294038aa42cfac /doc
parentcaabbb8388e180ce585dbe1872ad1759d411aab6 (diff)
downloadrust-5d2ef31af97dca3cc2a13225b0e00c4fbcd90e49.tar.gz
rust-5d2ef31af97dca3cc2a13225b0e00c4fbcd90e49.zip
Fix spacing in example comment.
Diffstat (limited to 'doc')
-rw-r--r--doc/guide-lifetimes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guide-lifetimes.md b/doc/guide-lifetimes.md
index ad1fed54c97..19e4e195809 100644
--- a/doc/guide-lifetimes.md
+++ b/doc/guide-lifetimes.md
@@ -597,7 +597,7 @@ example:
 # }
                                                      // -+ r
 fn select_based_on_unit_circle<'r, T>(               //  |-+ B
-    threshold: f64, a: &'r T, b: &'r T) -> &'r T { //  | |
+    threshold: f64, a: &'r T, b: &'r T) -> &'r T {   //  | |
                                                      //  | |
     let shape = Circle(Point {x: 0., y: 0.}, 1.);    //  | |
     select(&shape, threshold, a, b)                  //  | |