Skip to content

Commit

Permalink
fix for in -> for own of
Browse files Browse the repository at this point in the history
  • Loading branch information
haikyuu committed Sep 13, 2023
1 parent e7e2768 commit 1ce01d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.imba
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default class Builder < BaseBuilder
else
walk(node.left)

indent do ["for own ", left, " in ", walk(node.right),"\n", walk(node.body)]
indent do ["for own ", left, " of ", walk(node.right),"\n", walk(node.body)]

def VariableDeclarator(node)
let re
Expand Down

0 comments on commit 1ce01d1

Please sign in to comment.