STYLE: comments, spelling in token.H

This commit is contained in:
Mark Olesen
2019-12-07 16:46:49 +01:00
parent b7c54bc00c
commit cc16bc9338

View File

@ -87,12 +87,10 @@ public:
DOUBLE_SCALAR, //!< double (double-precision) type DOUBLE_SCALAR, //!< double (double-precision) type
// Pointer types // Pointer types
WORD, //!< Contents represent a Foam::word WORD, //!< A Foam::word
STRING, //!< Contents represent a Foam::string STRING, //!< A string
VARIABLE, //!< Contents are a Foam::string representing a VARIABLE, //!< A dictionary \c \$variable (string variant)
//!< dictionary \c \$variable expansion VERBATIMSTRING, //!< Verbatim string content
VERBATIMSTRING, //!< Contents are a Foam::string representing verbatim
//!< content
COMPOUND, //!< Compound type such as \c List\<label\> etc. COMPOUND, //!< Compound type such as \c List\<label\> etc.
ERROR //!< A token error encountered ERROR //!< A token error encountered
@ -133,7 +131,7 @@ public:
ASSIGN = '=', //!< Assignment/equals [#isseparator] ASSIGN = '=', //!< Assignment/equals [#isseparator]
ADD = '+', //!< Addition [#isseparator] ADD = '+', //!< Addition [#isseparator]
SUBTRACT = '-', //!< Substract or start of negative number SUBTRACT = '-', //!< Subtract or start of negative number
MULTIPLY = '*', //!< Multiply [#isseparator] MULTIPLY = '*', //!< Multiply [#isseparator]
DIVIDE = '/', //!< Divide [#isseparator] DIVIDE = '/', //!< Divide [#isseparator]