Skip to content

Commit 96ce0eb

Browse files
committed
style: fix lint
1 parent 973b1e0 commit 96ce0eb

7 files changed

+7
-7
lines changed

lib/options/SchemaArrayOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on an Array schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ tags: [String] });
1111
* schema.path('tags').options; // SchemaArrayOptions instance
1212
*

lib/options/SchemaBufferOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on a Buffer schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ bitmap: Buffer });
1111
* schema.path('bitmap').options; // SchemaBufferOptions instance
1212
*

lib/options/SchemaDateOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on a Date schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ startedAt: Date });
1111
* schema.path('startedAt').options; // SchemaDateOptions instance
1212
*

lib/options/SchemaNumberOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on a Number schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ count: Number });
1111
* schema.path('count').options; // SchemaNumberOptions instance
1212
*

lib/options/SchemaObjectIdOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on an ObjectId schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ testId: mongoose.ObjectId });
1111
* schema.path('testId').options; // SchemaObjectIdOptions instance
1212
*

lib/options/SchemaStringOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions');
66
* The options defined on a string schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ name: String });
1111
* schema.path('name').options; // SchemaStringOptions instance
1212
*

lib/options/SchemaTypeOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const utils = require('../utils');
66
* The options defined on a schematype.
77
*
88
* ####Example:
9-
*
9+
*
1010
* const schema = new Schema({ name: String });
1111
* schema.path('name').options instanceof mongoose.SchemaTypeOptions; // true
1212
*

0 commit comments

Comments
 (0)