address spelling issues

This commit is contained in:
Axel Kohlmeyer
2021-02-25 23:11:41 -05:00
parent 533b406d77
commit dfae88cf13
4 changed files with 4 additions and 3 deletions

View File

@ -367,7 +367,7 @@ KIM package
**Contents:** **Contents:**
This package contains a command with a set of subcommands that serve as a This package contains a command with a set of sub-commands that serve as a
wrapper on the wrapper on the
`Open Knowledgebase of Interatomic Models (OpenKIM) <https://openkim.org>`_ `Open Knowledgebase of Interatomic Models (OpenKIM) <https://openkim.org>`_
repository of interatomic models (IMs) enabling compatible ones to be used in repository of interatomic models (IMs) enabling compatible ones to be used in

View File

@ -2367,6 +2367,7 @@ parmin
Parrinello Parrinello
Partay Partay
Particuology Particuology
Pascuet
pastewka pastewka
Pastewka Pastewka
pathangle pathangle

View File

@ -110,7 +110,7 @@ bool utils::strmatch(const std::string &text, const std::string &pattern)
/** This function is a companion function to utils::strmatch(). Arguments /** This function is a companion function to utils::strmatch(). Arguments
* and logic is the same, but instead of a boolean, it returns the * and logic is the same, but instead of a boolean, it returns the
* substring that matches the regex pattern. There can be only one match. * sub-string that matches the regex pattern. There can be only one match.
* This can be used as a more flexible alternative to strstr(). * This can be used as a more flexible alternative to strstr().
*/ */
std::string utils::strfind(const std::string &text, const std::string &pattern) std::string utils::strfind(const std::string &text, const std::string &pattern)

View File

@ -37,7 +37,7 @@ namespace LAMMPS_NS {
bool strmatch(const std::string &text, const std::string &pattern); bool strmatch(const std::string &text, const std::string &pattern);
/** Find substring that matches a simplified regex pattern /** Find sub-string that matches a simplified regex pattern
* *
* \param text the text to be matched against the pattern * \param text the text to be matched against the pattern
* \param pattern the search pattern, which may contain regexp markers * \param pattern the search pattern, which may contain regexp markers