Skip to content

Commit 518caa0

Browse files
committed
Textual improvements.
And stylistic fixes for the style god.
1 parent 112c02e commit 518caa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cip/1.accepted/CIP2017-03-29-Single-Value-Subqueries.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Scalar Subqueries are read-only subqueries that produce a single value in a sing
1414
The result of a Scalar Subquery is the single value (in the single row) produced by the subquery.
1515

1616
List Subqueries are read-only subqueries that produce a single value per row, and zero or more rows.
17-
The result of a List Subquery is to collect the value of all rows produced by the subquery into a list.
17+
The result of a List Subquery is the list formed by collecting all of the values of all rows produced by the subquery.
1818

1919
=== Syntax
2020

@@ -57,7 +57,7 @@ RETURN [
5757
[source, cypher]
5858
.Collect separate lists of friends and enemies
5959
----
60-
MATCH (me:Person{name:$my_name})
60+
MATCH (me:Person {name: $my_name})
6161
RETURN me.name, [
6262
MATCH (me)-[:FRIEND]-(friend)
6363
RETURN friend.name

0 commit comments

Comments
 (0)