From 7441a90fd97917a82e1b4e0ff9b016f4c5172475 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 14 Jun 2012 18:18:43 -0700 Subject: [PATCH] Comments only: annotate FIXMEs --- src/libcore/num.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/num.rs b/src/libcore/num.rs index eb5073c14b8..2d192b4aab1 100644 --- a/src/libcore/num.rs +++ b/src/libcore/num.rs @@ -1,8 +1,8 @@ #[doc="An interface for numbers."] iface num { - // FIXME: Cross-crate overloading doesn't work yet. - // FIXME: Interface inheritance. + // FIXME: Cross-crate overloading doesn't work yet. (#2615) + // FIXME: Interface inheritance. (#2616) fn add(&&other: self) -> self; fn sub(&&other: self) -> self; fn mul(&&other: self) -> self;