From 01e75309026d34fb649e09f68f0512a9cc893ebc Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 22 Apr 2022 17:00:55 -0400 Subject: [PATCH] shorten URL message text --- src/utils.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/utils.cpp b/src/utils.cpp index 72944c1838..0d0bc91227 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -139,9 +139,7 @@ void utils::fmtargs_logmesg(LAMMPS *lmp, fmt::string_view format, fmt::format_ar std::string utils::errorurl(int errorcode) { - return fmt::format( - "\nFor more information please go to https://docs.lammps.org/Errors_details.html#err{:04d}", - errorcode); + return fmt::format("\nFor more information see https://docs.lammps.org/err{:04d}", errorcode); } void utils::flush_buffers(LAMMPS *lmp)