diff --git a/src/KSPACE/pppm_disp.h b/src/KSPACE/pppm_disp.h index 786a865978..ccbeb60f3c 100644 --- a/src/KSPACE/pppm_disp.h +++ b/src/KSPACE/pppm_disp.h @@ -489,7 +489,7 @@ Self-explanatory. E: KSpace accuracy too large to estimate G vector -Reduce the accuracy request or specify gwald explicitly +Reduce the accuracy request or specify gewald explicitly via the kspace_modify command. E: Could not compute grid size for Coulomb interaction diff --git a/src/input.cpp b/src/input.cpp index 8af8da26be..f88c8ca0c0 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -429,14 +429,14 @@ char *Input::nextword(char *str, char **next) start += 3; *next = stop+3; if (**next && !isspace(**next)) - error->all(FLERR,"Input line quote not followed by whitespace"); + error->all(FLERR,"Input line quote not followed by white-space"); } else if (*start == '"' || *start == '\'') { stop = strchr(&start[1],*start); if (!stop) error->all(FLERR,"Unbalanced quotes in input line"); start++; *next = stop+1; if (**next && !isspace(**next)) - error->all(FLERR,"Input line quote not followed by whitespace"); + error->all(FLERR,"Input line quote not followed by white-space"); } else { stop = &start[strcspn(start," \t\n\v\f\r")]; if (*stop == '\0') *next = stop; diff --git a/src/input.h b/src/input.h index 080accc1ce..47ad7779f1 100644 --- a/src/input.h +++ b/src/input.h @@ -173,9 +173,9 @@ E: Unbalanced quotes in input line No matching end double quote was found following a leading double quote. -E: Input line quote not followed by whitespace +E: Input line quote not followed by white-space -An end quote must be followed by whitespace. +An end quote must be followed by white-space. E: Invalid variable name diff --git a/src/lammps.h b/src/lammps.h index 5ccef3026e..151b4fc49b 100644 --- a/src/lammps.h +++ b/src/lammps.h @@ -170,7 +170,7 @@ The size of the MPI datatype does not match the size of a bigint. E: Small to big integers are not sized correctly -This error occurs whenthe sizes of smallint, imageint, tagint, bigint, +This error occurs when the sizes of smallint, imageint, tagint, bigint, as defined in src/lmptype.h are not what is expected. Contact the developers if this occurs.