Skip to content

Commit e83875a

Browse files
committed
Fix typo in README.
1 parent 35d244e commit e83875a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ real, generic enough foundation (and still isn't).
2626
`BigInt` values are immutable, signed, arbitrary-size integers that can be used as a
2727
drop-in replacement for the existing binary integer types of Swift 5.
2828
[Struct `BigInt`](https://github.com/objecthub/swift-numberkit/blob/master/Sources/NumberKit/BigInt.swift) defines all
29-
the standard arithmetic integer operations and implements the corresponding protocols provided
30-
by Swift.
29+
the standard arithmetic integer operations and implements the corresponding numeric
30+
protocols of Swift.
3131

3232
## Integer
3333

3434
`Integer` values are immutable, signed, arbitrary-size integers that can be used as a
3535
drop-in replacement for the existing binary integer types of Swift 5. As opposed to `BigInt`,
3636
the representation of values is chosen to optimize for memory size and performance of
37-
airthmetic operations. [Enum `Integer`](https://github.com/objecthub/swift-numberkit/blob/master/Sources/NumberKit/Integer.swift)
38-
defines all the standard arithmetic integer operations and implements the corresponding protocols
39-
provided by the Swift standard library.
37+
arithmetic operations. [Enum `Integer`](https://github.com/objecthub/swift-numberkit/blob/master/Sources/NumberKit/Integer.swift)
38+
defines all the standard arithmetic integer operations and implements the corresponding
39+
numeric protocols of Swift.
4040

4141
## Rational
4242

0 commit comments

Comments
 (0)