Open sangramfuture opened 11 years ago
var fooModel = mongoose.model('foo', FooSchema) , instance = new FooSchema({ text: 'i am the batman' })
should be
, instance = new fooModel({ text: 'i am the batman' })
The above is from #keywords, same usage is done across other plugins
should be
The above is from #keywords, same usage is done across other plugins