mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-02 02:22:31 +00:00
[Docs] Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253167 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b249d9b29
commit
fd671c136f
@ -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. Consider, for 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]
|
||||
|
@ -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. Consider, for 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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user