Skip to content

Commit ce97904

Browse files
authored
Fix the name of the argument that has a default value (GraphQLGuide#45)
1 parent 931f2d0 commit ce97904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/type-system/field-arguments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Arguments can be added to any field in the schema
55

66
# Field arguments
77

8-
Any field can accept a named, unordered list of [arguments](http://spec.graphql.org/draft/#sec-Field-Arguments). Arguments can be scalars, enums, or *input objects*. An argument can be non-null to indicate it is required. Optional arguments can have a default value, like `name` below.
8+
Any field can accept a named, unordered list of [arguments](http://spec.graphql.org/draft/#sec-Field-Arguments). Arguments can be scalars, enums, or *input objects*. An argument can be non-null to indicate it is required. Optional arguments can have a default value, like `width` below.
99

1010
```gql
1111
type User {

0 commit comments

Comments
 (0)