From eb632130b2c742791062ee6a4cd8371970cf71d1 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Thu, 30 Jan 2014 23:42:48 +0100 Subject: [PATCH] fixed documentation --- js/server/modules/org/arangodb/arango-collection.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/server/modules/org/arangodb/arango-collection.js b/js/server/modules/org/arangodb/arango-collection.js index 173f7fb80a..3ca40fc76c 100644 --- a/js/server/modules/org/arangodb/arango-collection.js +++ b/js/server/modules/org/arangodb/arango-collection.js @@ -171,7 +171,7 @@ ArangoCollection.prototype.index = function (id) { //////////////////////////////////////////////////////////////////////////////// /// @brief returns any document from a collection /// -/// @FUN{@FA{collection}.any() +/// @FUN{@FA{collection}.any()} /// /// Returns a random document from the collection or @LIT{null} if none exists. /// @@ -213,6 +213,8 @@ ArangoCollection.prototype.any = function () { }; //////////////////////////////////////////////////////////////////////////////// +/// @fn JSF_ArangoCollection_prototype_first +/// /// @brief selects the n first documents in the collection /// /// @FUN{@FA{collection}.first(@FA{count})} @@ -292,6 +294,8 @@ ArangoCollection.prototype.first = function (count) { }; //////////////////////////////////////////////////////////////////////////////// +/// @fn JSF_ArangoCollection_prototype_last +/// /// @brief selects the n last documents in the collection /// /// @FUN{@FA{collection}.last(@FA{count})} @@ -371,6 +375,8 @@ ArangoCollection.prototype.last = function (count) { }; //////////////////////////////////////////////////////////////////////////////// +/// @fn JSF_ArangoCollection_prototype_firstExample +/// /// @brief constructs a query-by-example for a collection /// /// @FUN{@FA{collection}.firstExample(@FA{example})}