From bd5483e6899ccb85913f47d23f1078386f3fde2c Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 10 Dec 2022 17:31:39 -0300 Subject: [PATCH] change some wording in the lexer documentation --- src/lexer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lexer.h b/src/lexer.h index e64a5ee..8299c4e 100644 --- a/src/lexer.h +++ b/src/lexer.h @@ -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)