diff options
| author | Alex Quach <alex@clinkle.com> | 2015-04-03 12:56:28 -0700 |
|---|---|---|
| committer | Alex Quach <alex@clinkle.com> | 2015-04-03 12:56:28 -0700 |
| commit | c3b27be942ae1682a43ce8af8fb07e3df1ea3bd1 (patch) | |
| tree | 75700d2975f9b7d5d5fd9e7a7dd8f7ee1edf9da3 | |
| parent | c5df38efa33a64b8670bc8755f0ba65c5c084928 (diff) | |
Delete duplicated sentence.
| -rw-r--r-- | src/doc/trpl/closures.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/trpl/closures.md b/src/doc/trpl/closures.md index 01b8163ffd3..52d07ae465f 100644 --- a/src/doc/trpl/closures.md +++ b/src/doc/trpl/closures.md @@ -175,9 +175,6 @@ we called `add_num`, it mutated the underlying value, as we'd expect. We also needed to declare `add_num` as `mut` too, because we’re mutating its environment. -We also had to declare `add_num` as mut, since we will be modifying its -environment. - If we change to a `move` closure, it's different: ```rust |
