From ae7006e373e458eaf0464761a6b492181c47100e Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Tue, 17 Jun 2014 11:09:20 -0700 Subject: [PATCH] Update doc comment for Int trait --- src/libcore/num/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index dd32a6da106..573470c29bc 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -388,7 +388,8 @@ pub trait Primitive: Copy trait_impl!(Primitive for uint u8 u16 u32 u64 int i8 i16 i32 i64 f32 f64) -/// A collection of traits relevant to primitive signed and unsigned integers +/// A primitive signed or unsigned integer equipped with various bitwise +/// operators, bit counting methods, and endian conversion functions. pub trait Int: Primitive + CheckedAdd + CheckedSub -- 2.44.0