Skip to content

Commit

Permalink
Merge pull request #7921 from kizmo04/master
Browse files Browse the repository at this point in the history
docs: fix some href
  • Loading branch information
vkarpov15 committed Jun 23, 2019
2 parents 4c4973a + 3588ddb commit 91b61a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/guide.pug
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ block content
If you are migrating from 4.x to 5.x please take a moment to read the [migration guide](/docs/migrating_to_5.html).
:markdown
<ul class="toc">
<li><a href="#models">Defining your schema</a></li>
<li><a href="#definition">Defining your schema</a></li>
<li><a href="#models">Creating a model</a></li>
<li><a href="#methods">Instance methods</a></li>
<li><a href="#statics">Statics</a></li>
Expand Down Expand Up @@ -80,7 +80,7 @@ block content
* [Mixed](./schematypes.html#mixed)
* [ObjectId](./schematypes.html#objectids)
* [Array](./schematypes.html#arrays)
* Decimal128
* [Decimal128](./api.html#mongoose_Mongoose-Decimal128)
* [Map](./schematypes.html#maps)

Read more about [SchemaTypes here](./schematypes.html).
Expand Down
2 changes: 1 addition & 1 deletion docs/schematypes.pug
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ block content
- [Mixed](#mixed)
- [ObjectId](#objectids)
- [Array](#arrays)
- [Decimal128](./api.html#Decimal128)
- [Decimal128](./api.html#mongoose_Mongoose-Decimal128)
- [Map](#maps)

<h4>Example</h4>
Expand Down
2 changes: 1 addition & 1 deletion lib/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ let id = 0;
* - [collection](/docs/guide.html#collection): string - no default
* - [id](/docs/guide.html#id): bool - defaults to true
* - [_id](/docs/guide.html#_id): bool - defaults to true
* - `minimize`: bool - controls [document#toObject](#document_Document-toObject) behavior when called manually - defaults to true
* - [minimize](/docs/guide.html#minimize): bool - controls [document#toObject](#document_Document-toObject) behavior when called manually - defaults to true
* - [read](/docs/guide.html#read): string
* - [writeConcern](/docs/guide.html#writeConcern): object - defaults to null, use to override [the MongoDB server's default write concern settings](https://docs.mongodb.com/manual/reference/write-concern/)
* - [shardKey](/docs/guide.html#shardKey): object - defaults to `null`
Expand Down

0 comments on commit 91b61a0

Please sign in to comment.