Fix comment lines

This commit is contained in:
Quentin Presley 2017-04-07 16:00:13 -04:00 committed by Diana Lau
parent d1d24529cc
commit 2bcd916a86
1 changed files with 2 additions and 2 deletions

View File

@ -1766,7 +1766,7 @@ SQLConnector.prototype.paginateSQL = function(sql, orderBy, options) {
/**
* Discover database schemas
*
// * @param {Object} options Options for discovery
* @param {Object} options Options for discovery
* @param {Function} [cb] The callback function
*/
SQLConnector.prototype.discoverDatabaseSchemas = function(options, cb) {
@ -1974,7 +1974,7 @@ SQLConnector.prototype.discoverForeignKeys = function(table, options, cb) {
this.execute(sql, cb);
};
/*!
/**
* Retrieves a description of the foreign key columns that reference the
* given table's primary key columns (the foreign keys exported by a table).
* They are ordered by fkTableOwner, fkTableName, and keySeq.