about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
author克雷 <geekcraik@users.noreply.github.com>2015-01-07 11:16:41 +0800
committer克雷 <geekcraik@users.noreply.github.com>2015-01-07 11:16:41 +0800
commit3ece65700413a74cb3caa0a045a959c843ee6b48 (patch)
tree99809163aeef4bc43d2ee86155e7efd3b39e5ab9 /src/liballoc
parentc7dd3c4d69aee1c4ad8cc220c194b176bba2ab62 (diff)
downloadrust-3ece65700413a74cb3caa0a045a959c843ee6b48.tar.gz
rust-3ece65700413a74cb3caa0a045a959c843ee6b48.zip
Update arc.rs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index 88f02d6573e..6d51709a338 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -37,7 +37,7 @@
 //!
 //! let five = Arc::new(5i);
 //!
-//! for i in range(0u, 10) {
+//! for _ in range(0u, 10) {
 //!     let five = five.clone();
 //!
 //!     Thread::spawn(move || {