about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-03-28 13:48:28 -0400
committerSteve Klabnik <steve@steveklabnik.com>2016-03-28 13:48:28 -0400
commit982d9591e1248c117f40c226e6aa7e95541786c8 (patch)
treeabfd80f78e44ce982d40a3811cca51a9b87acb5a /src
parent5ac3b19d9421b325ad3ea3991ddfb712ad294982 (diff)
parente469c79de810b1e16ddfba4296da49fc077c9938 (diff)
downloadrust-982d9591e1248c117f40c226e6aa7e95541786c8.tar.gz
rust-982d9591e1248c117f40c226e6aa7e95541786c8.zip
Rollup merge of #32504 - tclfs:patch-1, r=steveklabnik
Docs: a tiny modification
Diffstat (limited to 'src')
-rw-r--r--src/doc/book/closures.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/closures.md b/src/doc/book/closures.md
index 237545edc05..2afe995aeea 100644
--- a/src/doc/book/closures.md
+++ b/src/doc/book/closures.md
@@ -502,5 +502,5 @@ assert_eq!(6, answer);
 ```
 
 By making the inner closure a `move Fn`, we create a new stack frame for our
-closure. By `Box`ing it up, we’ve given it a known size, and allowing it to
+closure. By `Box`ing it up, we’ve given it a known size, allowing it to
 escape our stack frame.