[OCaml] (PR10016) Add a few missing line in OCamlLangImpl2.rst

Original patch by Damien Schoof

llvm-svn: 194067
This commit is contained in:
Peter Zotov 2013-11-05 12:14:04 +00:00
parent 4d0313d89f
commit c2a9fe7a77

View File

@ -339,6 +339,9 @@ expression:
(* Eat the binop. *)
Stream.junk stream;
(* Parse the primary expression after the binary operator *)
let rhs = parse_primary stream in
(* Okay, we know this is a binop. *)
let rhs =
match Stream.peek stream with