Skip to content

Commit

Permalink
fix misspelling of "parentheses"
Browse files Browse the repository at this point in the history
  • Loading branch information
GoNZooo committed Aug 17, 2021
1 parent 0be95b1 commit 6c71f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basics/01-values-and-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ f' x = show $ deriveFlorbFactorFromMerkleNumber $ castToMerkleNumber x
```

As you can see from the above snippet, using `$` allows us to just say "Apply the function on the
left to the expression on the right". `$` binds tightly to the right, so the parenthesis we see
above is what will be by default, hence we have no need for parenthesis like this when we use `$`.
left to the expression on the right". `$` binds tightly to the right, so the parentheses we see
above is what will be by default, hence we have no need for parentheses like this when we use `$`.

## Partial application

Expand Down

0 comments on commit 6c71f94

Please sign in to comment.