Fix typos (thanks lintian)

issue#70
Sébastien Villemot 2020-02-25 15:20:33 +01:00
parent 6241da54fa
commit 9ff10f482a
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
2 changed files with 3 additions and 3 deletions

View File

@ -4565,7 +4565,7 @@ DynamicModel::walkPacParameters(const string &name)
}
if (lhs.first == -1)
{
cerr << "walkPacParameters: error obtaining LHS varibale." << endl;
cerr << "walkPacParameters: error obtaining LHS variable." << endl;
exit(EXIT_FAILURE);
}
if (ec_params_and_vars.second.empty() || ar_params_and_vars.empty())

View File

@ -1,5 +1,5 @@
/*
* Copyright © 2003-2019 Dynare Team
* Copyright © 2003-2020 Dynare Team
*
* This file is part of Dynare.
*
@ -178,6 +178,6 @@ SymbolList::removeDuplicates(const string &dynare_command, WarningConsolidation
unique_symbols.push_back(it);
else
warnings << "WARNING: In " << dynare_command << ": " << it
<< " found more than once in symbol list. Removing all but first occurence." << endl;
<< " found more than once in symbol list. Removing all but first occurrence." << endl;
symbols = unique_symbols;
}