about summary refs log tree commit diff
diff options
context:
space:
mode:
-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)                  //  | |