@@ -31,7 +31,7 @@ private module NoSQL {
31
31
}
32
32
33
33
/**
34
- * Gets a reference to a initialized `Mongo` instance.
34
+ * Gets a reference to an initialized `Mongo` instance.
35
35
* See `pyMongo()`, `flask_PyMongo()`
36
36
*/
37
37
private API:: Node mongoInstance ( ) {
@@ -40,7 +40,7 @@ private module NoSQL {
40
40
}
41
41
42
42
/**
43
- * Gets a reference to a initialized `Mongo` DB instance.
43
+ * Gets a reference to an initialized `Mongo` DB instance.
44
44
* See `mongoEngine()`, `flask_MongoEngine()`
45
45
*/
46
46
private API:: Node mongoDBInstance ( ) {
@@ -79,7 +79,7 @@ private module NoSQL {
79
79
* mongo.db.user.find({'name': safe_search})
80
80
* ```
81
81
*
82
- * `mongo.db` would be a ` use` of a `Mongo` instance, and so the result.
82
+ * `mongo.db` would be a use of a `Mongo` instance, and so the result.
83
83
*/
84
84
private DataFlow:: Node mongoDB ( ) { mongoDB ( DataFlow:: TypeTracker:: end ( ) ) .flowsTo ( result ) }
85
85
@@ -110,7 +110,7 @@ private module NoSQL {
110
110
* mongo.db.user.find({'name': safe_search})
111
111
* ```
112
112
*
113
- * `mongo.db.user` would be a ` use` of a `Mongo` collection, and so the result.
113
+ * `mongo.db.user` would be a use of a `Mongo` collection, and so the result.
114
114
*/
115
115
private DataFlow:: Node mongoCollection ( ) {
116
116
mongoCollection ( DataFlow:: TypeTracker:: end ( ) ) .flowsTo ( result )
0 commit comments