about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 14:52:41 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 16:00:30 -0700
commitfc4da29b4f5e5b5eb4a5c47c724edde399d28145 (patch)
treedc0482aa2c4503ebcbfe284f91fd2b77a6223645 /src/libcore
parent71813b3793651523fec39b1af1627881c64761f4 (diff)
Update FIXME number
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/private.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/private.rs b/src/libcore/private.rs
index c4ef136a592..b7be29d8fbd 100644
--- a/src/libcore/private.rs
+++ b/src/libcore/private.rs
@@ -544,7 +544,7 @@ impl<T: Send> Exclusive<T> {
     }
 }
 
-// FIXME(#2585) make this a by-move method on the exclusive
+// FIXME(#3724) make this a by-move method on the exclusive
 pub fn unwrap_exclusive<T: Send>(arc: Exclusive<T>) -> T {
     let Exclusive { x: x } <- arc;
     let inner = unsafe { unwrap_shared_mutable_state(move x) };