projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2e6e6b
)
[OCaml] (PR10016) Add a few missing line in OCamlLangImpl2.rst
author
Peter Zotov
<whitequark@whitequark.org>
Tue, 5 Nov 2013 12:14:04 +0000
(12:14 +0000)
committer
Peter Zotov
<whitequark@whitequark.org>
Tue, 5 Nov 2013 12:14:04 +0000
(12:14 +0000)
Original patch by Damien Schoof
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194067
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/tutorial/OCamlLangImpl2.rst
patch
|
blob
|
history
diff --git
a/docs/tutorial/OCamlLangImpl2.rst
b/docs/tutorial/OCamlLangImpl2.rst
index 83a22ab22d4f438d73fed8a6aa2346ec7a754fb1..905b306746f1fd670c2ba4200ba8bc91281e6bfd 100644
(file)
--- a/
docs/tutorial/OCamlLangImpl2.rst
+++ b/
docs/tutorial/OCamlLangImpl2.rst
@@
-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