diff options
Diffstat (limited to 'llvm/docs/tutorial/LangImpl3.html')
| -rw-r--r-- | llvm/docs/tutorial/LangImpl3.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/tutorial/LangImpl3.html b/llvm/docs/tutorial/LangImpl3.html index 42093270c6a..e16d1be5cc1 100644 --- a/llvm/docs/tutorial/LangImpl3.html +++ b/llvm/docs/tutorial/LangImpl3.html @@ -818,12 +818,12 @@ FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } static ExprAST *ParseExpression(); /// identifierexpr -/// ::= identifer -/// ::= identifer '(' expression* ')' +/// ::= identifier +/// ::= identifier '(' expression* ')' static ExprAST *ParseIdentifierExpr() { std::string IdName = IdentifierStr; - getNextToken(); // eat identifer. + getNextToken(); // eat identifier. if (CurTok != '(') // Simple variable ref. return new VariableExprAST(IdName); |

