about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/send_map.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs
index 9b5b6e0d4f3..ea440899fe7 100644
--- a/src/libcore/send_map.rs
+++ b/src/libcore/send_map.rs
@@ -28,8 +28,9 @@ mod linear {
             buckets: ~[option<Bucket<K,V>>]})
     }
 
-    // FIXME(#2979) -- with #2979 we could rewrite found_entry
+    // FIXME(#3148) -- we could rewrite found_entry
     // to have type option<&bucket<K,V>> which would be nifty
+    // However, that won't work until #3148 is fixed
     enum SearchResult {
         FoundEntry(uint), FoundHole(uint), TableFull
     }