Skip to content

Commit 4af255f

Browse files
authored
Fix spelling (#245)
1 parent 034cad8 commit 4af255f

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TOMLDecoder
22

33
A fast, Swift-native, minimal dependency library
4-
that fully implements [TOML][https://toml.io/] spec 1.0.
4+
that fully implements [TOML](https://toml.io/) spec 1.0.
55

66
```swift
77
struct Team: Codable {

Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,11 @@ The parsing speed is significantly faster than 0.3.x releases.
1515

1616
### API overview
1717

18-
The type `TOMLDecoder` still serves as the entry point for decoding TOML into
19-
types that conforms to `Swift.Decodable`.
18+
The type `TOMLDecoder` still serves as the entry point for decoding TOML into types that conforms to `Swift.Decodable`.
2019
This is similar to previous releases.
2120

22-
The library still provides APIs to deserialize/parse/demarshal TOML documents
23-
into strutured data representations.
24-
During this process,
25-
Each TOML value,
26-
including container values,
27-
has a definitive, corresponding Swift type.
21+
The library still provides APIs to deserialize/parse/demarshal TOML documents into structured data representations.
22+
During this process, Each TOML value, including container values, has a definitive, corresponding Swift type.
2823
The decoding process can be lenient,
2924
and convert these initial value types into compatible types in the `Decodable`s.
3025

@@ -33,8 +28,7 @@ and convert these initial value types into compatible types in the `Decodable`s.
3328

3429
* `TOMLDecoder` is no longer an `open class`. It's now a struct.
3530
* Decoding strategies are represented and stored differently.
36-
* `Deserializer` is removed. Its functionalities are subsumed by
37-
new APIs.
31+
* `Deserializer` is removed. Its functionalities are subsumed by new APIs.
3832
* New minimal Apple platform versions:
3933
* iOS 13
4034
* macOS 10.15

0 commit comments

Comments
 (0)