From 127dcd5613a472eefbfda48fdb539bf5ac097ba1 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 5 Oct 2023 13:16:03 -0400 Subject: [PATCH] fix cut-n-paste error --- src/update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/update.cpp b/src/update.cpp index 1074d8dcf6..04d3f7e1e6 100644 --- a/src/update.cpp +++ b/src/update.cpp @@ -396,7 +396,7 @@ void Update::new_integrate(char *style, int narg, char **arg, int trysuffix, int void Update::create_minimize(int narg, char **arg, int trysuffix) { - if (narg < 1) error->all(FLERR, "Illegal run_style command"); + if (narg < 1) error->all(FLERR, "Illegal minimize_style command"); delete[] minimize_style; delete minimize;