Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
glebfann authored Jul 10, 2024
1 parent 7749983 commit e3d1c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func sum(_ lhs: Int, _ rhs: Int) -> Int {
let curriedSum = curry(sum)
print(curriedSum(2)(3)) // 5

let uncurriedSum = uncarry(curriedSum)
let uncurriedSum = uncurry(curriedSum)
print(uncurriedSum(2, 3)) // 5
```

Expand Down

0 comments on commit e3d1c09

Please sign in to comment.