Skip to content

Commit

Permalink
Fix typo in functional.md
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Carroll <[email protected]>
  • Loading branch information
brian-carroll authored Nov 20, 2023
1 parent 54d64ac commit d97b67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/content/functional.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ colors

To be fair, direct mutation primitives have benefits too. Some algorithms are more concise or otherwise easier to read when written with direct mutation, and direct mutation can make the performance characteristics of some operations clearer.

As such, Roc's opportunistic mutation design means that data races and reference cycles can be ruled out, and that functions will tend to be more ameanable for chaining, but also that some algorithms will be harder to express, and that performance optimization will likely tend to involve more profiling. These tradeoffs fit well with the language's overall design goals.
As such, Roc's opportunistic mutation design means that data races and reference cycles can be ruled out, and that functions will tend to be more amenable for chaining, but also that some algorithms will be harder to express, and that performance optimization will likely tend to involve more profiling. These tradeoffs fit well with the language's overall design goals.

## [No reassignment or shadowing](#no-reassignment) {#no-reassignment}

Expand Down

0 comments on commit d97b67a

Please sign in to comment.