From 86a821e5d15cc61ddc24f7208b80c171f21efaaf Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 21 May 2015 20:30:15 +0200 Subject: [PATCH] Replace "more later" by "later" --- src/doc/trpl/guessing-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md index 4220b4d04afa2..061ec90a0bb41 100644 --- a/src/doc/trpl/guessing-game.md +++ b/src/doc/trpl/guessing-game.md @@ -148,7 +148,7 @@ a few tricks up their sleeves. For example, they’re [immutable][immutable] by default. That’s why our example uses `mut`: it makes a binding mutable, rather than immutable. `let` doesn’t take a name on the left hand side, it actually accepts a -‘[pattern][patterns]’. We’ll use patterns more later. It’s easy enough +‘[pattern][patterns]’. We’ll use patterns later. It’s easy enough to use for now: ```rust