diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-05 17:54:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-05 17:54:34 +0000 |
commit | 20a0c80f7e3bfb396c3bb7750c20e5fabf829626 (patch) | |
tree | 9ff598837fdd9cd6df9d3cf97ac39a1ebda714e7 /docs/tutorial/LangImpl4.html | |
parent | b50196413ab9af7c815cd2d48e4ef5e3558c61b6 (diff) |
spell identifier correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43718 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl4.html')
-rw-r--r-- | docs/tutorial/LangImpl4.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/LangImpl4.html b/docs/tutorial/LangImpl4.html index 8c25a047c7..6fb2c8824d 100644 --- a/docs/tutorial/LangImpl4.html +++ b/docs/tutorial/LangImpl4.html @@ -686,12 +686,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); |