File tree Expand file tree Collapse file tree
src/main/java/graphql/parser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ public Void visitVariableDefinition( GraphqlParser.VariableDefinitionContext ctx
154154 Value value = getValue (ctx .defaultValue ().value ());
155155 variableDefinition .setDefaultValue (value );
156156 }
157- OperationDefinition operationDefiniton = (OperationDefinition ) getFromContextStack (ContextProperty .OperationDefinition );
158- operationDefiniton .getVariableDefinitions ().add (variableDefinition );
157+ OperationDefinition operationDefinition = (OperationDefinition ) getFromContextStack (ContextProperty .OperationDefinition );
158+ operationDefinition .getVariableDefinitions ().add (variableDefinition );
159159
160160 addContextProperty (ContextProperty .VariableDefinition , variableDefinition );
161161 super .visitVariableDefinition (ctx );
You can’t perform that action at this time.
0 commit comments