about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-01-06 17:32:43 -0500
committerNiko Matsakis <niko@alum.mit.edu>2015-01-06 17:32:43 -0500
commit3f1cf328b3d7c21d4e43f2a90cd7e83fb863b81f (patch)
treee433301ae5679a176475ff79470addcb30fceb5c
parent279de38cc8d1c1a1c68d714b9384da32c240e420 (diff)
downloadrust-3f1cf328b3d7c21d4e43f2a90cd7e83fb863b81f.tar.gz
rust-3f1cf328b3d7c21d4e43f2a90cd7e83fb863b81f.zip
Convert the TODO into FIXME.
-rw-r--r--src/librustc/middle/ty.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/middle/ty.rs b/src/librustc/middle/ty.rs
index 4ccb399c17c..b07315605e4 100644
--- a/src/librustc/middle/ty.rs
+++ b/src/librustc/middle/ty.rs
@@ -1470,12 +1470,12 @@ impl<'tcx> PolyTraitRef<'tcx> {
     }
 
     pub fn substs(&self) -> &'tcx Substs<'tcx> {
-        // TODO every use of this fn is probably a bug, it should yield Binder<>
+        // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<>
         self.0.substs
     }
 
     pub fn input_types(&self) -> &[Ty<'tcx>] {
-        // TODO every use of this fn is probably a bug, it should yield Binder<>
+        // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<>
         self.0.input_types()
     }