Skip to content

Commit 2050e5d

Browse files
committed
review suggestions
1 parent a54e2f5 commit 2050e5d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

modules/ROOT/pages/mutations/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:description: This section describes how to use mutations with the Neo4j GraphQL Library.
44

55

6-
This section shows examples of the following mutations:
6+
This page shows examples of the following mutations:
77

88
- xref::mutations/create.adoc[`create`] - create nodes, and recursively create or connect further nodes in the graph.
99
- xref::mutations/update.adoc[`update`] - update nodes, and recursively perform any operations from there.

modules/ROOT/pages/mutations/update.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ type Movie {
182182
}
183183
----
184184

185-
You can push to the `tags` property array:
185+
You can push tags to the `tags` property array:
186186

187187
.Mutation with a single `_PUSH`
188188
====
@@ -244,7 +244,7 @@ type Movie {
244244
----
245245

246246
You can also push to both the `tags` and `moreTags` property arrays:
247-
.Mutation with ``_PUSH``es to two different arrays
247+
.Mutation with `_PUSH` to two different arrays
248248
====
249249
[source, graphql, indent=0]
250250
----
@@ -323,7 +323,7 @@ tags: ['a', 'b']
323323

324324
Or, for more than one property from the array:
325325

326-
.Mutation with two ``_POP``s
326+
.Mutation with two `_POP`
327327
====
328328
[source, graphql, indent=0]
329329
----
@@ -366,7 +366,7 @@ type Movie {
366366

367367
Then, you can pop from both the `tags` and `moreTags` property arrays:
368368

369-
.Mutation with ``_POP``s from two different arrays
369+
.Mutation with `_POP` from two different arrays
370370
====
371371
[source, graphql, indent=0]
372372
----

0 commit comments

Comments
 (0)