Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Expressions/intern/InputParser.cpp')
-rw-r--r--source/gameengine/Expressions/intern/InputParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Expressions/intern/InputParser.cpp b/source/gameengine/Expressions/intern/InputParser.cpp
index 1f5f9800a33..4c1697c22c7 100644
--- a/source/gameengine/Expressions/intern/InputParser.cpp
+++ b/source/gameengine/Expressions/intern/InputParser.cpp
@@ -417,7 +417,7 @@ int CParser::Priority(int optorkind)
CExpression *CParser::Ex(int i)
{
- // parses an expression in the imput, starting at priority i, and
+ // parses an expression in the input, starting at priority i, and
// returns an CExpression, containing the parsed input
CExpression *e1 = NULL, *e2 = NULL;
int opkind2;
@@ -562,7 +562,7 @@ CExpression *CParser::Ex(int i)
CExpression *CParser::Expr()
{
- // parses an expression in the imput, and
+ // parses an expression in the input, and
// returns an CExpression, containing the parsed input
return Ex(1);
}