fixing typo and alignment

This commit is contained in:
Lefteris Karapetsas 2014-11-19 02:02:30 +01:00
parent 3174f5eca3
commit 4e6d3a38cd
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ private:
bool scanHexByte(char& o_scannedByte);
/// Scans a single JavaScript token.
/// Scans a single Solidity token.
void scanToken(bool _skipDocumentationComments = true);
/// Skips all whitespace and @returns true if something was skipped.

View File

@ -281,7 +281,7 @@ namespace solidity
K(FALSE_LITERAL, "false", 0) \
T(NUMBER, NULL, 0) \
T(STRING_LITERAL, NULL, 0) \
T(COMMENT_LITERAL, NULL, 0) \
T(COMMENT_LITERAL, NULL, 0) \
\
/* Identifiers (not keywords or future reserved words). */ \
T(IDENTIFIER, NULL, 0) \