1
Fork 0

Remove all i suffixes

This commit is contained in:
Tobias Bucher 2015-01-25 22:05:03 +01:00
parent 52c74e63da
commit 7f64fe4e27
474 changed files with 1999 additions and 1999 deletions

View file

@ -16,7 +16,7 @@ pub trait NumExt: PartialEq + PartialOrd + NumCast {}
impl NumExt for f32 {}
fn num_eq_one<T: NumExt>(n: T) {
println!("{}", n == NumCast::from(1i).unwrap())
println!("{}", n == NumCast::from(1).unwrap())
}
pub fn main() {