diff options
Diffstat (limited to 'src/resp.hpp')
-rw-r--r-- | src/resp.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.hpp b/src/resp.hpp index 3145080..a7080fe 100644 --- a/src/resp.hpp +++ b/src/resp.hpp @@ -241,7 +241,7 @@ struct ALiteral : public AST { const T val; }; -/// Lexeme (any atom in the CST, e.g. "a", "3.4", ""hello"", etc. +/// Lexeme (any atom in the CST, e.g. "a", "3.4", ""hello"", etc.) struct ALexeme : public AST, public std::string { ALexeme(Cursor c, const string& s) : AST(c), std::string(s) {} bool operator==(const AST& rhs) const { return this == &rhs; } |