Skip to content

Commit 7bd4617

Browse files
committed
Fix method name in Visitor docstring (#92)
1 parent 7aff9be commit 7bd4617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graphql/language/visitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def enter(self, node, key, parent, path, ancestors):
124124
# any other value: replace this node with the returned value
125125
return
126126
127-
def enter(self, node, key, parent, path, ancestors):
127+
def leave(self, node, key, parent, path, ancestors):
128128
# The return value has the following meaning:
129129
# IDLE (None) or SKIP: no action
130130
# BREAK: stop visiting altogether

0 commit comments

Comments
 (0)