Skip to content

Commit af57491

Browse files
authored
[Input Union]: small grammar fix (#718)
"It's" = "it is" or "it has", while "its" is the possessive form.
1 parent a1c1348 commit af57491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rfcs/InputUnion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Let's imagine an animal shelter for our example. When querying for a list of the
4040

4141
However, when we want to submit data, we can't use an `interface` or `union`, so we must model around that.
4242

43-
One technique commonly used to is a **tagged union** pattern. This essentially boils down to a "wrapper" input that isolates each type into it's own field. The field name takes on the convention of representing the type.
43+
One technique commonly used to is a **tagged union** pattern. This essentially boils down to a "wrapper" input that isolates each type into its own field. The field name takes on the convention of representing the type.
4444

4545
```graphql
4646
mutation {

0 commit comments

Comments
 (0)