Skip to content

Commit 36cdcb4

Browse files
committed
Typos
1 parent 83b4306 commit 36cdcb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/GraphQLParser.Tests/Files/KitchenSink.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ type Foo implements Bar
8383
# comment 2
8484
two(argument: InputType!): Type
8585
# multiline comments
86-
# with very importand description #
86+
# with very important description #
8787
# # and symbol # and ##
8888
three(argument: InputType, other: String): Int
8989
four(argument: String = "string"): String

src/GraphQLParser.Tests/ParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ public void Parse_KitchenSink_DoesNotThrowError(IgnoreOptions options)
720720
fieldDef.Comments.ShouldNotBeNull();
721721
fieldDef.Comments.Count.ShouldBe(3);
722722
fieldDef.Comments[0].Value.ShouldBe(" multiline comments");
723-
fieldDef.Comments[1].Value.ShouldBe(" with very importand description #");
723+
fieldDef.Comments[1].Value.ShouldBe(" with very important description #");
724724
fieldDef.Comments[2].Value.ShouldBe(" # and symbol # and ##");
725725
}
726726

src/GraphQLParser/AST/GraphQLArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class GraphQLArguments : ASTListNode<GraphQLArgument>
99
public override ASTNodeKind Kind => ASTNodeKind.Arguments;
1010

1111
/// <summary>
12-
/// Searches arguments for the first matching agrument by its name,
12+
/// Searches arguments for the first matching argument by its name,
1313
/// or returns <see langword="null"/> if none is found.
1414
/// </summary>
1515
public GraphQLValue? ValueFor(ROM name)

0 commit comments

Comments
 (0)