patrick
/
plasp
Archived
1
0
Fork 0

Fixed typo.

This commit is contained in:
Patrick Lühne 2016-06-08 12:56:50 +02:00
parent 75e51c856e
commit f2089f48b8
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ void Variable::parseTypedDeclarations(Context &context, ExpressionContext &expre
expressionContext.checkRequirement(Requirement::Type::Typing);
// If no types are given, check that typing is not a requirement
else if (expressionContext.hasRequirement(Requirement::Type::Typing))
throw utils::ParserException(context.parser, "Constant has undeclared type");
throw utils::ParserException(context.parser, "Variable has undeclared type");
}
////////////////////////////////////////////////////////////////////////////////////////////////////