Skip to content

Commit

Permalink
doc nits
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 committed Sep 1, 2024
1 parent c08b62a commit 4b9f167
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Sources/ParseSwift/Coding/ParseEncoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ extension Dictionary: _JSONStringDictionaryEncodableMarker where Key == String,
// MARK: ParseEncoder
/** An object that encodes Parse instances of a data type as JSON objects.
- note: `JSONEncoder` facilitates the encoding of `Encodable` values into JSON.
`ParseEncoder` facilitates the encoding of `ParseEncodable` and `ParseTypeable`
values into JSON. All Credit to Apple, this is a custom encoder with capability of skipping
keys at runtime and encoding objects into a digestable format for a [parse-server](https://github.com/parse-community/parse-server).
`ParseEncoder` facilitates the encoding of `ParseEncodable` values into JSON.
All Credit to Apple for the baseline encoder. The `ParseEncoder` is a custom encoder
with capability of skipping keys at runtime and encoding objects into a digestable format
for a [parse-server](https://github.com/parse-community/parse-server).
`ParseEncoder` matches the features of the [Swift 5.4 JSONEncoder ](https://github.com/apple/swift/blob/main/stdlib/public/Darwin/Foundation/JSONEncoder.swift).
Update comments as needed for improvement.
*/
Expand Down

0 comments on commit 4b9f167

Please sign in to comment.