summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/LangImpl6.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-05 17:54:34 +0000
committerChris Lattner <sabre@nondot.org>2007-11-05 17:54:34 +0000
commit9b2f7773acbb1a691fc2c29d80ab79cffa19ee88 (patch)
tree9c0985c9dfb30124317c12aba303f02a8ebf0466 /llvm/docs/tutorial/LangImpl6.html
parente02310d5e39f100532d0a14b726f6577d0848090 (diff)
downloadbcm5719-llvm-9b2f7773acbb1a691fc2c29d80ab79cffa19ee88.tar.gz
bcm5719-llvm-9b2f7773acbb1a691fc2c29d80ab79cffa19ee88.zip
spell identifier correctly.
llvm-svn: 43718
Diffstat (limited to 'llvm/docs/tutorial/LangImpl6.html')
-rw-r--r--llvm/docs/tutorial/LangImpl6.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/docs/tutorial/LangImpl6.html b/llvm/docs/tutorial/LangImpl6.html
index 90f02abb173..5a184c2c181 100644
--- a/llvm/docs/tutorial/LangImpl6.html
+++ b/llvm/docs/tutorial/LangImpl6.html
@@ -1048,12 +1048,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);
@@ -1126,7 +1126,7 @@ static ExprAST *ParseIfExpr() {
return new IfExprAST(Cond, Then, Else);
}
-/// forexpr ::= 'for' identifer '=' expr ',' expr (',' expr)? 'in' expression
+/// forexpr ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression
static ExprAST *ParseForExpr() {
getNextToken(); // eat the for.
@@ -1134,7 +1134,7 @@ static ExprAST *ParseForExpr() {
return Error("expected identifier after for");
std::string IdName = IdentifierStr;
- getNextToken(); // eat identifer.
+ getNextToken(); // eat identifier.
if (CurTok != '=')
return Error("expected '=' after for");
OpenPOWER on IntegriCloud