Skip to content

Commit 66c0edd

Browse files
committed
Normalize the comment style
1 parent 0ab39cd commit 66c0edd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ macro_rules! forward_all_binop {
653653
};
654654
}
655655

656-
/* arithmetic */
656+
// arithmetic
657657
forward_all_binop!(impl Add, add);
658658

659659
// (a + i b) + (c + i d) == (a + c) + i (b + d)
@@ -1083,7 +1083,7 @@ impl<T: Clone + Num> Rem<T> for Complex<T> {
10831083

10841084
real_arithmetic!(usize, u8, u16, u32, u64, u128, isize, i8, i16, i32, i64, i128, f32, f64);
10851085

1086-
/* constants */
1086+
// constants
10871087
impl<T: Clone + Num> Zero for Complex<T> {
10881088
#[inline]
10891089
fn zero() -> Self {
@@ -1210,7 +1210,7 @@ macro_rules! write_complex {
12101210
}};
12111211
}
12121212

1213-
/* string conversions */
1213+
// string conversions
12141214
impl<T> fmt::Display for Complex<T>
12151215
where
12161216
T: fmt::Display + Num + PartialOrd + Clone,

0 commit comments

Comments
 (0)