Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 7eb5b4e

Browse files
authored
Merge pull request #71 from mcarmonaa/fix/readme-example
Fix capitalizing bug in the README example
2 parents e743ebe + b81c8ff commit 7eb5b4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ print(uast)
5353
print(bblfsh.filter(uast, "//Import[@roleImport and @roleDeclaration]//alias")
5454

5555
# You can also iterate on several tree iteration orders:
56-
it = bblfsh.iterator(uast, bblfsh.TreeOrder.pre_order)
56+
it = bblfsh.iterator(uast, bblfsh.TreeOrder.PRE_ORDER)
5757
for node in it:
5858
print(node.internal_type)
5959
```

0 commit comments

Comments
 (0)