From 9cf6c72a9ccb3bf816e3b2dcd61b4172de4e267c Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 12 Apr 2020 00:36:39 -0400 Subject: [PATCH] fix spell-checker issues --- doc/src/Build_basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/Build_basics.rst b/doc/src/Build_basics.rst index 83faf9fc67..99f051e6ff 100644 --- a/doc/src/Build_basics.rst +++ b/doc/src/Build_basics.rst @@ -147,9 +147,9 @@ may implement strict OpenMP 4.0 and later semantics, which are incompatible with the OpenMP 3.1 semantics used in LAMMPS for maximal compatibility with compiler versions in use. If compilation with OpenMP enabled fails because of your compiler requiring strict OpenMP 4.0 semantic, you can -change the behvior by adding ``-D LAMMPS_OMP_COMPAT=4`` to the ``LMP_INC`` +change the behavior by adding ``-D LAMMPS_OMP_COMPAT=4`` to the ``LMP_INC`` variable in your makefile, or add it to the command line while configuring -with CMake. CMake will autodetect the suitable setting for the GNU, Clang, +with CMake. CMake will detect the suitable setting for the GNU, Clang, and Intel compilers. ----------