Skip to content

Commit 1084b78

Browse files
committed
Add missing period at end of error message.
1 parent 2a12bf2 commit 1084b78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/core/validation/rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,4 +989,4 @@ def enter_ObjectField(self, node, *args):
989989

990990
@staticmethod
991991
def duplicate_input_field_message(field_name):
992-
return 'There can only be one input field named "{}"'.format(field_name)
992+
return 'There can only be one input field named "{}".'.format(field_name)

0 commit comments

Comments
 (0)