Skip to content

Commit

Permalink
remove underscrone from atom
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Kraus committed Nov 11, 2017
1 parent 4f6c07f commit a7d49ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/antlr4/imports/ComplexType.g4
Expand Up @@ -261,7 +261,7 @@ variablelist :
**/
atom :
LOWERCASELETTER
( LOWERCASELETTER | UPPERCASELETTER | UNDERSCORE | DIGIT | SLASH | MINUS )*
( LOWERCASELETTER | UPPERCASELETTER | DIGIT | SLASH | MINUS )*
;

/**
Expand All @@ -278,7 +278,7 @@ variable :
**/
variableatom:
( UPPERCASELETTER | UNDERSCORE )
( LOWERCASELETTER | UPPERCASELETTER | UNDERSCORE | DIGIT | SLASH )*
( LOWERCASELETTER | UPPERCASELETTER | DIGIT | SLASH )*
;

/**
Expand Down

0 comments on commit a7d49ae

Please sign in to comment.