diff --git a/ocaml-lessons/lesson3/step5/step.html b/ocaml-lessons/lesson3/step5/step.html index 1e2fd8b..f075267 100644 --- a/ocaml-lessons/lesson3/step5/step.html +++ b/ocaml-lessons/lesson3/step5/step.html @@ -5,7 +5,7 @@
(fun x -> x + 1) 42
We can bound an anonymous function to an identifier. That's way, we -have severals ways to define functions:
+We can bind an anonymous function to an identifier. That way, we +have several ways to define functions:
let incr = fun x -> x + 1
incr 42