From f23a91d6a2f37ba6d415d2c8ca4302bf1b3a4e9e Mon Sep 17 00:00:00 2001 From: Bulat Musin <9249387+bmusin@users.noreply.github.com> Date: Sun, 14 Jan 2018 08:20:58 +0300 Subject: [PATCH] refine wording --- second-edition/src/ch13-01-closures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch13-01-closures.md b/second-edition/src/ch13-01-closures.md index 10edac330..59ffde644 100644 --- a/second-edition/src/ch13-01-closures.md +++ b/second-edition/src/ch13-01-closures.md @@ -753,7 +753,7 @@ three `Fn` traits as follows: closure must take ownership of these variables and move them into the closure when it is defined. The `Once` part of the name represents the fact that the closure can’t take ownership of the same variables more than once, so it can - only be called one time. + be called only once. * `Fn` borrows values from the environment immutably. * `FnMut` can change the environment because it mutably borrows values.