summaryrefslogtreecommitdiff
path: root/docs/tutorial/LangImpl7.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
commit20a0c80f7e3bfb396c3bb7750c20e5fabf829626 (patch)
tree9ff598837fdd9cd6df9d3cf97ac39a1ebda714e7 /docs/tutorial/LangImpl7.html
parentb50196413ab9af7c815cd2d48e4ef5e3558c61b6 (diff)
downloadllvm-20a0c80f7e3bfb396c3bb7750c20e5fabf829626.tar.gz
llvm-20a0c80f7e3bfb396c3bb7750c20e5fabf829626.tar.bz2
llvm-20a0c80f7e3bfb396c3bb7750c20e5fabf829626.tar.xz
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/LangImpl7.html')
-rw-r--r--docs/tutorial/LangImpl7.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/tutorial/LangImpl7.html b/docs/tutorial/LangImpl7.html
index b002f7a451..07dd5c620f 100644
--- a/docs/tutorial/LangImpl7.html
+++ b/docs/tutorial/LangImpl7.html
@@ -809,8 +809,8 @@ static ExprAST *ParsePrimary() {
<div class="doc_code">
<pre>
-/// varexpr ::= 'var' identifer ('=' expression)?
-// (',' identifer ('=' expression)?)* 'in' expression
+/// varexpr ::= 'var' identifier ('=' expression)?
+// (',' identifier ('=' expression)?)* 'in' expression
static ExprAST *ParseVarExpr() {
getNextToken(); // eat the var.
@@ -829,7 +829,7 @@ local <tt>VarNames</tt> vector.
<pre>
while (1) {
std::string Name = IdentifierStr;
- getNextToken(); // eat identifer.
+ getNextToken(); // eat identifier.
// Read the optional initializer.
ExprAST *Init = 0;
@@ -1244,12 +1244,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);
@@ -1322,7 +1322,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.
@@ -1330,7 +1330,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");
@@ -1364,8 +1364,8 @@ static ExprAST *ParseForExpr() {
return new ForExprAST(IdName, Start, End, Step, Body);
}
-/// varexpr ::= 'var' identifer ('=' expression)?
-// (',' identifer ('=' expression)?)* 'in' expression
+/// varexpr ::= 'var' identifier ('=' expression)?
+// (',' identifier ('=' expression)?)* 'in' expression
static ExprAST *ParseVarExpr() {
getNextToken(); // eat the var.
@@ -1377,7 +1377,7 @@ static ExprAST *ParseVarExpr() {
while (1) {
std::string Name = IdentifierStr;
- getNextToken(); // eat identifer.
+ getNextToken(); // eat identifier.
// Read the optional initializer.
ExprAST *Init = 0;