Skip to content

Commit fb840cb

Browse files
authored
Update 10.collect.md (#1186)
lower case
1 parent c68be9d commit fb840cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs-2.0/3.ngql-guide/6.functions-and-expressions/10.collect.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ nebula> UNWIND [1, 2, 1] AS a \
2828
nebula> UNWIND [1, 2, 1] AS a \
2929
RETURN a, collect(a), size(collect(a));
3030
+---+------------+------------------+
31-
| a | collect(a) | size(COLLECT(a)) |
31+
| a | collect(a) | size(collect(a)) |
3232
+---+------------+------------------+
3333
| 2 | [2] | 1 |
3434
| 1 | [1, 1] | 2 |

0 commit comments

Comments
 (0)