Skip to content

Commit

Permalink
fix(#2866): tau to alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Feb 12, 2024
1 parent cd072ce commit d0f7d6f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions eo-parser/src/main/antlr4/org/eolang/parser/Phi.g4
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ bindings
;

binding
: tauBinding
: alphaBinding
| emptyBinding
| deltaBidning
| lambdaBidning
;

tauBinding
alphaBinding
: attribute ARROW object
;

Expand All @@ -42,11 +42,11 @@ attribute
| SIGMA
| VTX
| LABEL
| tauAttr
| alphaAttr
;

tauAttr
: TAU INDEX
alphaAttr
: ALPHA INDEX
;

emptyBinding
Expand Down Expand Up @@ -118,8 +118,8 @@ ARROW
DASHED_ARROW
: ''
;
TAU
: 'τ'
ALPHA
: 'α'
;
EMPTY
: ''
Expand Down

0 comments on commit d0f7d6f

Please sign in to comment.