mongoose 6.3.1 → 6.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -153,7 +153,7 @@ The first argument is the _singular_ name of the collection your model is for. *
153
153
  const MyModel = mongoose.model('Ticket', mySchema);
154
154
  ```
155
155
 
156
- Then Mongoose will create the model for your __tickets__ collection, not your __ticket__ collection.
156
+ Then `MyModel` will use the __tickets__ collection, not the __ticket__ collection. For more details read the [model docs](https://mongoosejs.com/docs/api/mongoose.html#mongoose_Mongoose-model).
157
157
 
158
158
  Once we have our model, we can then instantiate it, and save it:
159
159