From a4021f5686d1fbf3427579b90c3df36e15c082a1 Mon Sep 17 00:00:00 2001 From: "B. Arman Aksoy" Date: Thu, 3 Dec 2015 17:06:16 -0500 Subject: [PATCH] fix typo in lesson 5/5 --- ocaml-lessons/lesson5/step5/step.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.