about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorMasaki Hara <ackie.h.gmai@gmail.com>2019-02-03 22:08:34 +0900
committerCrLF0710 <crlf0710@gmail.com>2019-04-05 02:27:01 +0800
commit4dcd6cc208e143309d481f0ecf4051bd9d139a18 (patch)
treed8c5281c4afb8f1725eab53a783df0097eeb77e3 /src/doc
parente55d82c8a3a05e433897de4a991366bb2963470d (diff)
downloadrust-4dcd6cc208e143309d481f0ecf4051bd9d139a18.tar.gz
rust-4dcd6cc208e143309d481f0ecf4051bd9d139a18.zip
Fix failing tests.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/library-features/boxed-closure-impls.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/library-features/boxed-closure-impls.md b/src/doc/unstable-book/src/library-features/boxed-closure-impls.md
index 0c738d0f78e..5ceb54ff3b9 100644
--- a/src/doc/unstable-book/src/library-features/boxed-closure-impls.md
+++ b/src/doc/unstable-book/src/library-features/boxed-closure-impls.md
@@ -37,7 +37,7 @@ fn main() {
     });
 
     // Call it
-    f();
+    f(&42);
 }
 ```