Skip to content

Commit a916e18

Browse files
committed
Update documentation.
1 parent f48ad63 commit a916e18

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

NumberKit.xcodeproj/project.pbxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
CC0741581B8127B600406A43 /* Complex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Complex.swift; sourceTree = "<group>"; };
3737
CC07415A1B813A0600406A43 /* RationalTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RationalTests.swift; sourceTree = "<group>"; };
3838
CC07415C1B813B0300406A43 /* ComplexTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComplexTests.swift; sourceTree = "<group>"; };
39+
CC5E473320C428D500F21B03 /* LinuxMain.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = LinuxMain.swift; path = Tests/LinuxMain.swift; sourceTree = SOURCE_ROOT; };
3940
CC99F54F1B7AA6E200355E1E /* NumberKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NumberKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4041
CC99F5521B7AA6E200355E1E /* NumberKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NumberKit.h; sourceTree = "<group>"; };
4142
CC99F5541B7AA6E200355E1E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
@@ -117,11 +118,12 @@
117118
CC99F55D1B7AA6E200355E1E /* NumberKitTests */ = {
118119
isa = PBXGroup;
119120
children = (
120-
CC99F5601B7AA6E200355E1E /* Info.plist */,
121121
CC99F56F1B7AAB5300355E1E /* NumberUtilTests.swift */,
122122
CC99F5691B7AA76600355E1E /* BigIntTests.swift */,
123123
CC07415A1B813A0600406A43 /* RationalTests.swift */,
124124
CC07415C1B813B0300406A43 /* ComplexTests.swift */,
125+
CC5E473320C428D500F21B03 /* LinuxMain.swift */,
126+
CC99F5601B7AA6E200355E1E /* Info.plist */,
125127
);
126128
indentWidth = 2;
127129
name = NumberKitTests;

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## Overview
1111

12-
This is a macOS framework implementing advanced numeric data types for the Swift 4 programming
12+
This is a framework implementing advanced numeric data types for the Swift 4 programming
1313
language. The current version provides three new numeric types:
1414

1515
1. `BigInt`: arbitrary-precision signed integers
@@ -19,7 +19,8 @@ language. The current version provides three new numeric types:
1919
**Requirements**:
2020
- Xcode 9.3
2121
- Swift 4.1
22-
- Optional: Swift Package Manager
22+
- macOS with Xcode or Swift Package Manager
23+
- Linux with Swift Package Manager
2324

2425
**Note**: So far, with every major version of Swift, Apple decided to change the foundational APIs of the numeric
2526
types in Swift significantly and consistently in a backward incompatible way. In order to be more isolated from

0 commit comments

Comments
 (0)