]> git.lizzy.rs Git - rust.git/commitdiff
hashmap: add FIXME number
authorDaniel Micay <danielmicay@gmail.com>
Sun, 23 Jun 2013 09:13:13 +0000 (05:13 -0400)
committerDaniel Micay <danielmicay@gmail.com>
Sun, 23 Jun 2013 09:13:13 +0000 (05:13 -0400)
src/libstd/hashmap.rs

index 0b6bf339d7efd89ba56a29a4c8395f9a7a2f218c..7d55947e81881e2c629f4b052e622e17ce1c198c 100644 (file)
@@ -719,7 +719,7 @@ pub fn contains_equiv<Q:Hash + Equiv<T>>(&self, value: &Q) -> bool {
     }
 
     /// Visit all elements in arbitrary order
-    /// FIXME: Remove when all callers are converted
+    /// FIXME: #6978: Remove when all callers are converted
     pub fn each(&self, f: &fn(&T) -> bool) -> bool {
         self.iter().advance(f)
     }