不要怂,就是干,撸起袖子干!

Commit 33e140d9 by Wei-Liang Liou Committed by Sushant

docs: fix typos (#10656)

1 parent 580c0655
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* [sequelizer](https://github.com/andyforever/sequelizer) - A GUI Desktop App for generating Sequelize models. Support for Mysql, Mariadb, Postgres, Sqlite, Mssql. * [sequelizer](https://github.com/andyforever/sequelizer) - A GUI Desktop App for generating Sequelize models. Support for Mysql, Mariadb, Postgres, Sqlite, Mssql.
* [sequelize-auto](https://github.com/sequelize/sequelize-auto) Generating models for SequelizeJS via the command line is another choice. * [sequelize-auto](https://github.com/sequelize/sequelize-auto) Generating models for SequelizeJS via the command line is another choice.
* [pg-generator](http://www.pg-generator.com/builtin-templates/sequelize/) - Auto generate/scaffold Sequelize models for PostgreSQL database. * [pg-generator](http://www.pg-generator.com/builtin-templates/sequelize/) - Auto generate/scaffold Sequelize models for PostgreSQL database.
* [seqelizejs-decorators](https://www.npmjs.com/package/sequelizejs-decorators) decorators for composing sequelize models * [sequelizejs-decorators](https://www.npmjs.com/package/sequelizejs-decorators) decorators for composing sequelize models
### Autoloader ### Autoloader
* [sequelize-autoload](https://github.com/boxsnake-nodejs/sequelize-autoload) - An autoloader for Sequelize, inspired by [PSR-0](https://www.php-fig.org/psr/psr-0/) and [PSR-4](https://www.php-fig.org/psr/psr-4/). * [sequelize-autoload](https://github.com/boxsnake-nodejs/sequelize-autoload) - An autoloader for Sequelize, inspired by [PSR-0](https://www.php-fig.org/psr/psr-0/) and [PSR-4](https://www.php-fig.org/psr/psr-4/).
......
...@@ -608,7 +608,7 @@ class BelongsToMany extends Association { ...@@ -608,7 +608,7 @@ class BelongsToMany extends Association {
} }
/** /**
* Associate one or several rows with source instance. It will not un-associate any already assoicated instance * Associate one or several rows with source instance. It will not un-associate any already associated instance
* that may be missing from `newInstances`. * that may be missing from `newInstances`.
* *
* @param {Model} sourceInstance source instance to associate new instances with * @param {Model} sourceInstance source instance to associate new instances with
......
...@@ -57,7 +57,7 @@ export interface AssociationOptions { ...@@ -57,7 +57,7 @@ export interface AssociationOptions {
* The alias of this model, in singular form. See also the `name` option passed to `sequelize.define`. If * The alias of this model, in singular form. See also the `name` option passed to `sequelize.define`. If
* you create multiple associations between the same tables, you should provide an alias to be able to * you create multiple associations between the same tables, you should provide an alias to be able to
* distinguish between them. If you provide an alias when creating the assocition, you should provide the * distinguish between them. If you provide an alias when creating the assocition, you should provide the
* same alias when eager loading and when getting assocated models. Defaults to the singularized name of * same alias when eager loading and when getting associated models. Defaults to the singularized name of
* target * target
*/ */
as?: string | { singular: string; plural: string }; as?: string | { singular: string; plural: string };
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!