Skip to content

Commit ed06e3a

Browse files
authored
Update README (#1033)
Remove references to Swift 3 and make them more general. Clarification on some wording.
1 parent 44efa1d commit ed06e3a

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

README.md

+8-13
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,25 @@
33
The Foundation framework defines a base layer of functionality that is required for almost all applications. It provides primitive classes and introduces several paradigms that define functionality not provided by either the Objective-C runtime and language or Swift standard library and language.
44

55
It is designed with these goals in mind:
6+
67
* Provide a small set of basic utility classes.
78
* Make software development easier by introducing consistent conventions.
89
* Support internationalization and localization, to make software accessible to users around the world.
910
* Provide a level of OS independence, to enhance portability.
1011

1112
There is more information on the Foundation framework [here](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/ObjC_classic/).
1213

13-
> Important: This project is in the early stages of development. It is not yet ready for production use, but it is ready for contributions. It is scheduled to be part of the Swift 3 release.
14-
15-
This project provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On macOS, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is to abstract away the exact underlying platform as much as possible.
16-
17-
## Goals
18-
19-
### Part of Swift 3.0
14+
This project, `swift-corelibs-foundation`, provides an implementation of the Foundation API for platforms where there is no Objective-C runtime. On macOS, iOS, and other Apple platforms, apps should use the Foundation that comes with the operating system. Our goal is for the API in this project to match the OS-provided Foundation and abstract away the exact underlying platform as much as possible.
2015

21-
Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift 3 goal of **portability**.
16+
## Common API
2217

23-
In our first year, we are not looking to make major API changes to the library. We feel that this will hamper the primary goal. There are some areas where API changes are unavoidable, however. For more information on those APIs and the overall design of Foundation, please see [our design document](Docs/Design.md).
18+
Our primary goal is to achieve implementation parity with Foundation on Apple platforms. This will help to enable the overall Swift goal of **portability**.
2419

25-
### API Naming and Foundation
20+
Therefore, we are not looking to make major API changes to the library that do not correspond with changes made to Foundation on Apple platforms. However, there are some areas where API changes are unavoidable. In these cases, documentation on the method will provide additional detail of the reason for the difference.
2621

27-
One of the goals of the Swift 3 project is [a new set of naming guidelines](https://swift.org/documentation/api-design-guidelines/). The Foundation project will soon update all of its names to match the new guidelines. We will also drop the 'NS' prefix from all Foundation classes.
22+
For more information on those APIs and the overall design of Foundation, please see [our design document](Docs/Design.md).
2823

29-
### Current Status
24+
## Current Status
3025

3126
See our [status page](Docs/Status.md) for a detailed list of what features are currently implemented.
3227

@@ -73,7 +68,7 @@ In general, the dividing line should be drawn in overlapping area of what people
7368

7469
For example, Optional is a type provided by the standard library. However, the compiler understands the concept to provide support for things like optional-chaining syntax. The compiler also has syntax for creating Arrays and Dictionaries.
7570

76-
On the other hand, the compiler has no built-in support for types like NSURL. NSURL also has ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation.
71+
On the other hand, the compiler has no built-in support for types like `URL`. `URL` also ties into more complex functionality like basic networking support. Therefore this type is more appropriate for Foundation.
7772

7873
##### Why not make the existing Objective-C implementation of Foundation open source?
7974

0 commit comments

Comments
 (0)