diff --git a/lib/sql.js b/lib/sql.js index b26ac06..f323be9 100644 --- a/lib/sql.js +++ b/lib/sql.js @@ -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.