From 308207d5f9413e6c0a28a3149e5dd49920875a67 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 e6b97e5731..f990893658 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;