From 59ab66f9a0626c93d24d28dcb0845f80441584d1 Mon Sep 17 00:00:00 2001 From: Johannes Pfeifer Date: Thu, 6 Apr 2017 08:41:12 +0200 Subject: [PATCH] Fix typo in error message --- preprocessor/ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc index 6d993d118..629d4b423 100644 --- a/preprocessor/ModFile.cc +++ b/preprocessor/ModFile.cc @@ -144,7 +144,7 @@ ModFile::checkPass(bool nostrict) if ((mod_file_struct.ramsey_model_present || mod_file_struct.ramsey_policy_present) && mod_file_struct.discretionary_policy_present) { - cerr << "ERROR: You cannot use the discretionary_policy command when you use either rasmey_model or ramsey_policy and vice versa" << endl; + cerr << "ERROR: You cannot use the discretionary_policy command when you use either ramsey_model or ramsey_policy and vice versa" << endl; exit(EXIT_FAILURE); }