Merge pull request #3445 from andschwa/patch-1

[ocaml/en] Fix typo
This commit is contained in:
Andre Polykanine 2019-01-10 12:10:48 +02:00 committed by GitHub
commit 9a75f7fe9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,7 +161,7 @@ let my_lambda = fun x -> x * x ;;
(*** Operators ***)
(* There is little distintion between operators and functions.
(* There is little distinction between operators and functions.
Every operator can be called as a function. *)
(+) 3 4 (* Same as 3 + 4 *)