Skip to content

Commit

Permalink
README: replace the <| operators with [] in the example
Browse files Browse the repository at this point in the history
This is to follow-up the [PR][] that removed `<|` operators from the
code.

[PR]: thoughtbot#488
  • Loading branch information
eunikolsky committed Sep 19, 2018
1 parent ceb3775 commit 85cfc5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ struct User {
extension User: Decodable {
static func decode(_ json: JSON) -> Decoded<User> {
return curry(User.init)
<^> json <| "id"
<*> json <| "name"
<*> json <|? "email" // Use ? for parsing optional values
<*> json <| "role" // Custom types that also conform to Decodable just work
<*> json <| ["company", "name"] // Parse nested objects
<*> json <|| "friends" // parse arrays of objects
<^> json["id"]
<*> json["name"]
<*> json[optional: "email"] // Use `[optional:]` for parsing optional values
<*> json["role"] // Custom types that also conform to Decodable just work
<*> json["company", "name"] // Parse nested objects
<*> json["friends"] // parse arrays of objects
}
}

Expand Down

0 comments on commit 85cfc5b

Please sign in to comment.