Merge pull request #94 from strongloop/fixComments

Fix comment lines
This commit is contained in:
Diana Lau 2017-06-27 23:03:04 -04:00 committed by GitHub
commit ffa776cf6a
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 * Discover database schemas
* *
// * @param {Object} options Options for discovery * @param {Object} options Options for discovery
* @param {Function} [cb] The callback function * @param {Function} [cb] The callback function
*/ */
SQLConnector.prototype.discoverDatabaseSchemas = function(options, cb) { SQLConnector.prototype.discoverDatabaseSchemas = function(options, cb) {
@ -1974,7 +1974,7 @@ SQLConnector.prototype.discoverForeignKeys = function(table, options, cb) {
this.execute(sql, cb); this.execute(sql, cb);
}; };
/*! /**
* Retrieves a description of the foreign key columns that reference the * Retrieves a description of the foreign key columns that reference the
* given table's primary key columns (the foreign keys exported by a table). * given table's primary key columns (the foreign keys exported by a table).
* They are ordered by fkTableOwner, fkTableName, and keySeq. * They are ordered by fkTableOwner, fkTableName, and keySeq.