about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 16:30:18 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 17:56:41 -0700
commit894525555933300b4f306ea752ed94b80c89480a (patch)
treeabd901c3659b4e1afae995bf21ce9f75bc445265
parentffc9fff720c33776d681034b7b7c8d920b2d6a15 (diff)
downloadrust-894525555933300b4f306ea752ed94b80c89480a.tar.gz
rust-894525555933300b4f306ea752ed94b80c89480a.zip
Comments only: Annotate FIXMEs in libcore
-rw-r--r--src/libcore/dvec.rs2
-rw-r--r--src/libcore/float.rs2
-rw-r--r--src/libcore/int-template.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/dvec.rs b/src/libcore/dvec.rs
index 428abb36cc8..730206e3574 100644
--- a/src/libcore/dvec.rs
+++ b/src/libcore/dvec.rs
@@ -179,7 +179,7 @@ impl extensions<A:copy> for dvec<A> {
 
     #[doc = "
         Append all elements of an iterable.
-    
+
         Failure will occur if the iterable's `each()` method
         attempts to access this vector.
     "]
diff --git a/src/libcore/float.rs b/src/libcore/float.rs
index d55c0e0c371..f50719408d0 100644
--- a/src/libcore/float.rs
+++ b/src/libcore/float.rs
@@ -109,7 +109,7 @@ fn to_str_common(num: float, digits: uint, exact: bool) -> str {
     // stack of digits
     let mut fractionalParts = [];
 
-    // FIXME:
+    // FIXME: (#2608)
     // This used to return right away without rounding, as "[-]num",
     // but given epsilon like in f64.rs, I don't see how the comparison
     // to epsilon did much when only used there.
diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs
index 0599fa77f90..1ee91495c57 100644
--- a/src/libcore/int-template.rs
+++ b/src/libcore/int-template.rs
@@ -137,7 +137,7 @@ impl num of num::num for T {
 }
 
 
-// FIXME: Has alignment issues on windows and 32-bit linux
+// FIXME: Has alignment issues on windows and 32-bit linux (#2609)
 #[test]
 #[ignore]
 fn test_from_str() {
@@ -157,7 +157,7 @@ fn test_from_str() {
     assert from_str("x") == none;
 }
 
-// FIXME: Has alignment issues on windows and 32-bit linux
+// FIXME: Has alignment issues on windows and 32-bit linux (#2609)
 #[test]
 #[ignore]
 fn test_parse_buf() {