From f0e94d647548986f9265abcd58852c3fdd6e5f4c Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Tue, 13 Oct 2015 17:21:32 +0200 Subject: [PATCH] fix typo --- preprocessor/ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ComputingTasks.cc b/preprocessor/ComputingTasks.cc index 3f27dbc4a..1d0ed9ac2 100644 --- a/preprocessor/ComputingTasks.cc +++ b/preprocessor/ComputingTasks.cc @@ -159,7 +159,7 @@ PriorPosteriorFunctionStatement::checkPass(ModFileStructure &mod_file_struct, Wa OptionsList::string_options_t::const_iterator it2 = options_list.string_options.find("function"); if (it2 == options_list.string_options.end() || it2->second.empty()) { - cerr << "ERROR: prior_posterior_function requires the function argument" << endl; + cerr << "ERROR: prior_posterior_function requires the 'function' argument" << endl; exit(EXIT_FAILURE); } }