From b8f756fa35b6b8663e61e407667cc7e4ccb7fdfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= <stepan@adjemian.io> Date: Fri, 22 Feb 2019 23:10:51 +0100 Subject: [PATCH] Fixed option name in error message. --- src/ParsingDriver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ParsingDriver.cc b/src/ParsingDriver.cc index b0e30376..47698548 100644 --- a/src/ParsingDriver.cc +++ b/src/ParsingDriver.cc @@ -2628,7 +2628,7 @@ ParsingDriver::pac_model() aux_model_name = it->second; else if (pac_steady_state_growth_rate_number < 0 && pac_steady_state_growth_rate_symb_id < 0) - error("when aux_model_name is not passed to the pac_model statement, you must pass steady_state_growth_rate"); + error("when aux_model_name is not passed to the pac_model statement, you must pass steady_state_growth option"); else if (pac_growth_symb_id >= 0 && mod_file->symbol_table.getType(pac_growth_symb_id) == SymbolType::parameter && (pac_steady_state_growth_rate_number >= 0 || pac_steady_state_growth_rate_symb_id != pac_growth_symb_id)) -- GitLab