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

Commit f5e9779f by Sunshine Yin

Fix spelling error in model.js

1 parent f9d357bf
Showing with 2 additions and 2 deletions
<a name="model"></a> <a name="model"></a>
# Class Model # Class Model
[View code](https://github.com/sequelize/sequelize/blob/cc8687539fe96f7f64887a04ddf5d48f159f5e92/lib/model.js#L24) [View code](https://github.com/sequelize/sequelize/blob/cc8687539fe96f7f64887a04ddf5d48f159f5e92/lib/model.js#L24)
A Model represents a table in the database. Sometimes you might also see it referred to as model, or simply as factory. A Model represents a table in the database. Sometimes you might also see it refererred to as model, or simply as factory.
This class should _not_ be instantiated directly, it is created using `sequelize.define`, and already created models can be loaded using `sequelize.import` This class should _not_ be instantiated directly, it is created using `sequelize.define`, and already created models can be loaded using `sequelize.import`
### Mixes: ### Mixes:
......
...@@ -13,7 +13,7 @@ var Utils = require('./utils') ...@@ -13,7 +13,7 @@ var Utils = require('./utils')
, associationsMixin = require('./associations/mixin'); , associationsMixin = require('./associations/mixin');
/** /**
* A Model represents a table in the database. Sometimes you might also see it refererred to as model, or simply as factory. * A Model represents a table in the database. Sometimes you might also see it referred to as model, or simply as factory.
* This class should _not_ be instantiated directly, it is created using `sequelize.define`, and already created models can be loaded using `sequelize.import` * This class should _not_ be instantiated directly, it is created using `sequelize.define`, and already created models can be loaded using `sequelize.import`
* *
* @class Model * @class Model
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!