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