Skip to content

Commit

Permalink
Fixed omission of a parameter in apoc.coll.occurrences documentation. (
Browse files Browse the repository at this point in the history
  • Loading branch information
InverseFalcon authored and jexp committed Apr 12, 2017
1 parent e57ac60 commit 266fe54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ Sometimes type information gets lost, these functions help you to coerce an "Any
| apoc.coll.containsDuplicates(coll) | returns true if a collection contains duplicate elements
| apoc.coll.duplicates(coll) | returns a list of duplicate items in the collection
| apoc.coll.duplicatesWithCount(coll) | returns a list of duplicate items in the collection and their count, keyed by `item` and `count` (e.g., `[{item: xyz, count:2}, {item:zyx, count:5}]`)
| apoc.coll.occurrences(coll) | returns the count of the given item in the collection
| apoc.coll.occurrences(coll, item) | returns the count of the given item in the collection
|===

=== Lookup Functions
Expand Down

0 comments on commit 266fe54

Please sign in to comment.