[Docs] Fix typo
authorAlex Denisov <1101.debian@gmail.com>
Sun, 15 Nov 2015 14:13:24 +0000 (14:13 +0000)
committerAlex Denisov <1101.debian@gmail.com>
Sun, 15 Nov 2015 14:13:24 +0000 (14:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253167 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl2.rst
docs/tutorial/OCamlLangImpl2.rst

index 92a266eeb031b838e32d522357b855d0079d7297..4704008fc8a7c4335c95dc1ffcca40e6d29ee8ae 100644 (file)
@@ -396,7 +396,7 @@ would be easy enough to eliminate the map and do the comparisons in the
 With the helper above defined, we can now start parsing binary
 expressions. The basic idea of operator precedence parsing is to break
 down an expression with potentially ambiguous binary operators into
-pieces. Consider ,for example, the expression "a+b+(c+d)\*e\*f+g".
+pieces. Considerfor example, the expression "a+b+(c+d)\*e\*f+g".
 Operator precedence parsing considers this as a stream of primary
 expressions separated by binary operators. As such, it will first parse
 the leading primary expression "a", then it will see the pairs [+, b]
index 905b306746f1fd670c2ba4200ba8bc91281e6bfd..b6b15177f2cf9af91977c88ac8de9a70cdecb505 100644 (file)
@@ -280,7 +280,7 @@ fixed-size array).
 With the helper above defined, we can now start parsing binary
 expressions. The basic idea of operator precedence parsing is to break
 down an expression with potentially ambiguous binary operators into
-pieces. Consider ,for example, the expression "a+b+(c+d)\*e\*f+g".
+pieces. Considerfor example, the expression "a+b+(c+d)\*e\*f+g".
 Operator precedence parsing considers this as a stream of primary
 expressions separated by binary operators. As such, it will first parse
 the leading primary expression "a", then it will see the pairs [+, b]