Remove spurious extra options arg (#1390)

* Remove spurious extra options arg

* Remove space
This commit is contained in:
Rand McKinney 2017-05-26 11:34:50 -07:00 committed by GitHub
parent 3630bb9ae4
commit 0a056adee4
1 changed files with 1 additions and 2 deletions

View File

@ -1036,9 +1036,8 @@ DataSource.prototype.autoupdate = function(models, cb) {
* Discover existing database tables.
* This method returns an array of model objects, including {type, name, onwer}
*
* @param {Object} options The options
* @param {Function} Callback function. Optional.
* @options {Object} options Discovery options. See below.
* @param {Function} Callback function. Optional.
* @property {String} owner/schema The owner or schema to discover from.
* @property {Boolean} all If true, discover all models; if false, discover only models owned by the current user.
* @property {Boolean} views If true, include views; if false, only tables.