diff --git a/README.md b/README.md index 7d38eb5e..a61efa45 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ | Package | Swift | iOS | iPadOS | Mac Catalyst | macOS | tvOS | watchOS | |:-------:|:-----:|:----:|:------:|:------------:|:-----:|:----:|:-------:| | 0.9.0 | 5.7 | 16.4 | 16.4 | 16.4 | 13.3 | 16.4 | 9.4 | -| 0.8.0 | 5.8 | 16.4 | 16.4 | 16.4 | 13.3 | 16.4 | 9.4 | ## NBKCoreKit ([Sources][COR/S], [Tests][COR/T], [Benchmarks][COR/B]) diff --git a/Sources/NBKCoreKit/Private/NBK+Text+RadixUIntRoot.swift b/Sources/NBKCoreKit/Private/NBK+Text+RadixUIntRoot.swift index cf122f10..226be75b 100644 --- a/Sources/NBKCoreKit/Private/NBK+Text+RadixUIntRoot.swift +++ b/Sources/NBKCoreKit/Private/NBK+Text+RadixUIntRoot.swift @@ -76,7 +76,7 @@ extension NBK { // MARK: * Perfect //*========================================================================* - /// A ``RadixUIntRoot`` with a power that is zero. + /// A `RadixUIntRoot` with a power that is zero. @frozen public struct PerfectRadixUIntRoot: _NBKRadixUIntRoot { //=--------------------------------------------------------------------= @@ -127,7 +127,7 @@ extension NBK { // MARK: * NBK x Imperfect //*========================================================================* - /// A ``RadixUIntRoot`` with a power that is non-zero. + /// A `RadixUIntRoot` with a power that is non-zero. @frozen public struct ImperfectRadixUIntRoot: _NBKRadixUIntRoot { //=--------------------------------------------------------------------= @@ -176,7 +176,7 @@ extension NBK { // MARK: * Any //*========================================================================* - /// A ``RadixUIntRoot`` with a power that may be zero. + /// A `RadixUIntRoot` with a power that may be zero. @frozen public struct AnyRadixUIntRoot: _NBKRadixUIntRoot { @usableFromInline typealias Solution = (exponent: UInt, power: UInt)