File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 34
34
/// I.e. if a is any integer other than 1 or -1, there is no integer b such
35
35
/// that `a*b = 1`. The existence of inverses is requried to form a field.
36
36
///
37
- /// If a type `T` conforms to the ``Real`` protocol, then `T` and `` Complex<T>` `
37
+ /// If a type `T` conforms to the ``Real`` protocol, then `T` and `Complex<T>`
38
38
/// both conform to `AlgebraicField`.
39
39
///
40
40
/// See also Swift's `SignedNumeric`, `Numeric` and `AdditiveArithmetic`
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ extension Real {
41
41
42
42
/// cos(x) - 1, computed in such a way as to maintain accuracy for small x.
43
43
///
44
- /// See also ``ElementaryFunctions/expMinusOne()``.
44
+ /// See also ``ElementaryFunctions/expMinusOne(_: )``.
45
45
@_transparent
46
46
public static func cosMinusOne( _ x: Self ) -> Self {
47
47
let sinxOver2 = sin ( x/ 2 )
You can’t perform that action at this time.
0 commit comments