aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan VanBuren <me@svbn.me>2021-02-27 12:42:26 -0500
committerDrew DeVault <sir@cmpwn.com>2021-02-27 15:13:49 -0500
commitf0b0b6ba933a9f651319b40e039c348996d5ef02 (patch)
treee4a28f3f91dc3137e57d8468c629ef36f2c58b04
parenteae7c7f648f2365ba1418e4d2a3431e7111b26e5 (diff)
downloadsr.ht-docs-f0b0b6ba933a9f651319b40e039c348996d5ef02.tar.gz
Fix a few typos in graphql.md
-rw-r--r--graphql.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphql.md b/graphql.md
index 82144cf..ad10ae7 100644
--- a/graphql.md
+++ b/graphql.md
@@ -117,7 +117,7 @@ specification](https://github.com/jaydenseric/graphql-multipart-request-spec).
To limit abuse, we calculate the complexity of your query before executing it,
and apply an upper limit. As a general rule of thumb, the complexity is
-a function of how many resoruces your request implicates. For example, consider
+a function of how many resources your request implicates. For example, consider
the following (silly) query:
```
@@ -141,7 +141,7 @@ query {
```
Each field adds 1 to your complexity, unless it represents a relationship like
-sshKeys - in which case it is multipled by the number of results you request.
+sshKeys - in which case it is multiplied by the number of results you request.
The total complexity of your request is capped to 200 by default; some services
permit more.
@@ -169,7 +169,7 @@ query {
```
The `cursor` field returns an opaque string which can be used to return
-additional results, or `null` if there are none. The following request reutrns
+additional results, or `null` if there are none. The following request returns
another page:
```
@@ -206,7 +206,7 @@ backwards-compatible include:
- Adding new optional fields to existing input types
The special version `0.0.0` indicates an API which is still undergoing its
-initial design work, and provides no stability guarantees whatosever.
+initial design work, and provides no stability guarantees whatsoever.
Two additional fields are provided by the `version` resolver: `deprecationDate`
and `features`. The former, if not null, indicates the date at which a major