diff --git a/ocaml-lessons/lesson5/step5/step.html b/ocaml-lessons/lesson5/step5/step.html index 1fab8a1..58195f3 100644 --- a/ocaml-lessons/lesson5/step5/step.html +++ b/ocaml-lessons/lesson5/step5/step.html @@ -17,7 +17,7 @@

Parentheses



Also, as function application takes precedence over infix operators you will -frequently uses parentheses to make explicit the expected evaluation order, as +frequently use parentheses to make explicit the expected evaluation order, as in: square (1 + 1) since square 1+1 would yield 2.