about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2015-05-21 20:30:15 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2015-05-21 20:30:15 +0200
commit86a821e5d15cc61ddc24f7208b80c171f21efaaf (patch)
treee1565dc26f0ead89a69e142799479498154d4c9e /src
parent59ba55ddbd4cfc1fb2bc627ed1e859000b7304db (diff)
Replace "more later" by "later"
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/guessing-game.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md
index 4220b4d04af..061ec90a0bb 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