change some wording in the lexer documentation

This commit is contained in:
Chris Cromer 2022-12-10 17:31:39 -03:00
parent 7d9c8be36f
commit bd5483e689
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
1 changed files with 3 additions and 3 deletions

View File

@ -147,7 +147,7 @@ namespace obelisk
public:
/**
* @brief Throw a new Lexer exception.
* @brief Construct a new Lexer Exception object.
*
*/
LexerException() :
@ -156,9 +156,9 @@ namespace obelisk
}
/**
* @brief Throw a new Lexer exception including an error message.
* @brief Construct a new Lexer Exception object.
*
* @param[in] errorMessage The error message to include.
* @param[in] errorMessage Error message to include.
*/
LexerException(const std::string& errorMessage) :
errorMessage_(errorMessage)