Skip to content

Commit

Permalink
follow up
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusFreitag committed Nov 27, 2023
1 parent dce7cd5 commit 87fbfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ast/if.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (ie *If) String() string {
out.WriteString(ie.ConConPairs[0].Consequence.String())

for _, pair := range ie.ConConPairs[1:] {
out.WriteString("elif (")
out.WriteString("\nelif (")
out.WriteString(pair.Condition.String())
out.WriteString(")\n ")
out.WriteString(pair.Consequence.String())
Expand Down

0 comments on commit 87fbfd2

Please sign in to comment.