From 04765866436a6d89642bdd69f3d8fb1e8012a463 Mon Sep 17 00:00:00 2001 From: Jason Yeo Date: Tue, 5 May 2015 12:02:18 +0800 Subject: [PATCH] Fix indentation in while-let example --- src/doc/trpl/if-let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/if-let.md b/src/doc/trpl/if-let.md index 7173303e3b1..4872ed6a773 100644 --- a/src/doc/trpl/if-let.md +++ b/src/doc/trpl/if-let.md @@ -65,7 +65,7 @@ loop as long as a value matches a certain pattern. It turns code like this: loop { match option { Some(x) => println!("{}", x), - _ => break, + _ => break, } } ```