Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05e5d07

Browse files
committedSep 7, 2020
Fix Typos
1 parent 7af9f40 commit 05e5d07

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ once the application starts, using the browser goto URL [http://localhost:8080](
3737

3838
to run in non development mode:
3939

40-
The application is now runnable using `java -jar app/target/graphqlcrud-java-1.0.0-SNAPSHOT-runner.jar`.
40+
The application is now runnable using `java -jar app/target/app-1.0.0-SNAPSHOT-runner.jar`.
4141

4242

‎engine/src/main/java/io/graphqlcrud/QueryVisitor.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323

2424
public interface QueryVisitor {
2525

26-
void visitScalar(Field rootFeild, GraphQLFieldDefinition rootDefinition, GraphQLType type);
26+
void visitScalar(Field rootField, GraphQLFieldDefinition rootDefinition, GraphQLType type);
2727

28-
void startVisitObject(Field rootFeild, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
29-
void endVisitObject(Field rootFeild, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
28+
void startVisitObject(Field rootField, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
29+
void endVisitObject(Field rootField, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
3030

31-
void startVisitRootObject(Field rootFeild, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
32-
void endVisitRootObject(Field rootFeild, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
31+
void startVisitRootObject(Field rootField, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
32+
void endVisitRootObject(Field rootField, GraphQLFieldDefinition rootDefinition, GraphQLObjectType type);
3333

3434
void visitArgument(Field field, GraphQLFieldDefinition definition, GraphQLObjectType type, Argument arg);
3535
}

0 commit comments

Comments
 (0)
Please sign in to comment.