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 3434/// I.e. if a is any integer other than 1 or -1, there is no integer b such
3535/// that `a*b = 1`. The existence of inverses is requried to form a field.
3636///
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>`
3838/// both conform to `AlgebraicField`.
3939///
4040/// See also Swift's `SignedNumeric`, `Numeric` and `AdditiveArithmetic`
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ extension Real {
4141
4242 /// cos(x) - 1, computed in such a way as to maintain accuracy for small x.
4343 ///
44- /// See also ``ElementaryFunctions/expMinusOne()``.
44+ /// See also ``ElementaryFunctions/expMinusOne(_: )``.
4545 @_transparent
4646 public static func cosMinusOne( _ x: Self ) -> Self {
4747 let sinxOver2 = sin ( x/ 2 )
You can’t perform that action at this time.
0 commit comments