Put missing brackets around hexstring optional parameter name in Mongo JSDoc

This commit is contained in:
Vincent Jaubert
2015-08-30 19:50:02 +02:00
committed by Sashko Stubailo
parent bab1459c50
commit 10d1ce1593

View File

@@ -673,7 +673,7 @@ Mongo.Collection.prototype.rawDatabase = function () {
* @summary Create a Mongo-style `ObjectID`. If you don't specify a `hexString`, the `ObjectID` will generated randomly (not using MongoDB's ID construction rules).
* @locus Anywhere
* @class
* @param {String} hexString Optional. The 24-character hexadecimal contents of the ObjectID to create
* @param {String} [hexString] Optional. The 24-character hexadecimal contents of the ObjectID to create
*/
Mongo.ObjectID = MongoID.ObjectID;