From eb2a6d9866c4bb662d7ca5d735a6b25801c2f2f9 Mon Sep 17 00:00:00 2001 From: Augusto Hack Date: Fri, 3 Apr 2015 22:56:34 -0300 Subject: [PATCH] Removed repeated sentence. --- src/doc/trpl/closures.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/doc/trpl/closures.md b/src/doc/trpl/closures.md index 01b8163ffd372..52d07ae465f44 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