File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 8138c3574fcd75c0857cf2a8e9a8f905c2774649
2
+ refs/heads/master: 46e6e42d7a17d33da0fd13f2afd81a566ec08ceb
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 67b97ab6d2b7de9b69fd97dc171fcf8feec932ff
5
5
refs/heads/try: 28d5878c1f0465c11c8e7a3085008b0c592d48d0
Original file line number Diff line number Diff line change @@ -36,10 +36,8 @@ impl<T: Clone + Num> Complex<T> {
36
36
Complex { re : re, im : im }
37
37
}
38
38
39
- /**
40
- Returns the square of the norm (since `T` doesn't necessarily
41
- have a sqrt function), i.e. `re^2 + im^2`.
42
- */
39
+ /// Returns the square of the norm (since `T` doesn't necessarily
40
+ /// have a sqrt function), i.e. `re^2 + im^2`.
43
41
#[ inline]
44
42
pub fn norm_sqr ( & self ) -> T {
45
43
self . re * self . re + self . im * self . im
You can’t perform that action at this time.
0 commit comments