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

Commit eda0d70

Browse files
author
Mark Needham
committed
LIMIT in caps
1 parent 32cad11 commit eda0d70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/asciidoc/scripts/closeness-centrality.cypher

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ MATCH (n:Node) WHERE id(n) = nodeId
2626

2727
RETURN n.id AS node, centrality
2828
ORDER BY centrality DESC
29-
limit 20;
29+
LIMIT 20;
3030

3131
// end::stream-sample-graph[]
3232

3333
// tag::write-sample-graph[]
3434

35-
CALL algo.closeness('Node', 'LINK', {write:true, writeProperty:'centrality'})
35+
CALL algo.closeness('Node', 'LINK', {write:true, writeProperty:'centrality'})
3636
YIELD nodes,loadMillis, computeMillis, writeMillis;
3737

3838
// end::write-sample-graph[]
@@ -50,7 +50,7 @@ CALL algo.closeness(
5050

5151
// tag::huge-projection[]
5252

53-
CALL algo.closeness('Node', 'LINK', {graph:'huge'})
53+
CALL algo.closeness('Node', 'LINK', {graph:'huge'})
5454
YIELD nodes,loadMillis, computeMillis, writeMillis;
5555

56-
// end::huge-projection[]
56+
// end::huge-projection[]

0 commit comments

Comments
 (0)