Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 2bb6e98

Browse files
committed
Fix grammar mistakes in README
1 parent 57fa2c3 commit 2bb6e98

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,23 +141,23 @@ be consistent.
141141
Mutations are disabled in the resharding state of a shard cluster.
142142

143143
There are three types of modifications: insert, update and delete. Several
144-
modifications are allowed in an one GraphQL request, but they will be processed
145-
in non-transactional way.
144+
modifications are allowed in one GraphQL request, but they will be processed in
145+
non-transactional way.
146146

147147
In the case of shard accessor the following constraints can guarantee that data
148-
will be changed in atomic way or, in other words, in an one shard request (but
148+
will be changed in atomic way or, in other words, in one shard request (but
149149
foregoing and upcoming selects can see other data):
150150

151151
* One insert / update / delete argument over the entire GraphQL request.
152152
* For update / delete: either the argument is for 1:1 connection or `limit: 1`
153-
is used for a collection (a topmost field) or 1:N connection (a nested
153+
is used for a collection (a upmost field) or 1:N connection (a nested
154154
field).
155155
* No update of a first field of a **tuple** (shard key is calculated by it). It
156156
is the first field of upmost record in the schema for a collection in case
157157
when there are no service fields. If there are service fields, the first
158158
field of a tuple cannot be changed by a mutation GraphQL request.
159159

160-
Data can be changed between shard requests which are part of the one GraphQL
160+
Data can be changed between shard requests which are part of one GraphQL
161161
request, so the result can observe inconsistent state. We'll don't show all
162162
possible cases, but give an idea what going on in the following paragraph.
163163

@@ -229,7 +229,7 @@ Consider the following details:
229229
#### Update
230230

231231
Example with an update statement passed from a variable. Note that here we
232-
update an object given by a connection (inside an one of nested fields of a
232+
update an object given by a connection (inside one of nested fields of a
233233
request):
234234

235235
```
@@ -336,7 +336,7 @@ Consider the following details:
336336
* The `delete` argument is forbidden with `insert` or `update` arguments.
337337
* The `delete` argument is forbidden in `query` requests.
338338
* The same fields traversal order and 'select -> change -> select connected'
339-
order of operations for an one field are applied likewise for the `update`
339+
order of operations for one field are applied likewise for the `update`
340340
argument.
341341
* The `limit` argument can be used to define how many objects are subject to
342342
deletion and `offset` can help with adjusting start point of multi-object

0 commit comments

Comments
 (0)