Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Oct 12, 2019
1 parent 973b1e0 commit 96ce0eb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/options/SchemaArrayOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on an Array schematype.
*
* ####Example:
*
*
* const schema = new Schema({ tags: [String] });
* schema.path('tags').options; // SchemaArrayOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaBufferOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on a Buffer schematype.
*
* ####Example:
*
*
* const schema = new Schema({ bitmap: Buffer });
* schema.path('bitmap').options; // SchemaBufferOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaDateOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on a Date schematype.
*
* ####Example:
*
*
* const schema = new Schema({ startedAt: Date });
* schema.path('startedAt').options; // SchemaDateOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaNumberOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on a Number schematype.
*
* ####Example:
*
*
* const schema = new Schema({ count: Number });
* schema.path('count').options; // SchemaNumberOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaObjectIdOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on an ObjectId schematype.
*
* ####Example:
*
*
* const schema = new Schema({ testId: mongoose.ObjectId });
* schema.path('testId').options; // SchemaObjectIdOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaStringOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
* The options defined on a string schematype.
*
* ####Example:
*
*
* const schema = new Schema({ name: String });
* schema.path('name').options; // SchemaStringOptions instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/options/SchemaTypeOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const utils = require('../utils');
* The options defined on a schematype.
*
* ####Example:
*
*
* const schema = new Schema({ name: String });
* schema.path('name').options instanceof mongoose.SchemaTypeOptions; // true
*
Expand Down

0 comments on commit 96ce0eb

Please sign in to comment.