Skip to content

Commit 68d32cd

Browse files
committed
Merge pull request #37 from prakal/patch-1
Minor grammar modifications in README.md
2 parents 7046d2b + a10bdd5 commit 68d32cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,8 @@ Both of those queries give this result:
521521
}
522522
```
523523

524-
The `UseFragment` and `DuplicateFields` queries will got the same result, but
525-
the latter has less copy paste; if we wanted to add more fields, we could add
524+
The `UseFragment` and `DuplicateFields` queries will both get the same result, but
525+
`UseFragment` is less verbose; if we wanted to add more fields, we could add
526526
it to the common fragment rather than copying it into multiple places.
527527

528528
We defined the type system above, so we know the type of each object
@@ -672,7 +672,7 @@ fragment DroidFields on Droid {
672672

673673
This query is valid, but it's a bit verbose; named fragments were valuable
674674
above when we used them multiple times, but we're only using this one once.
675-
Instead of using a named fragment, then, we can use an inline fragment; this
675+
Instead of using a named fragment, we can use an inline fragment; this
676676
still allows us to indicate the type we are querying on, but without naming
677677
a separate fragment:
678678

0 commit comments

Comments
 (0)