From 2bcd916a8689383865b12f4808ae98f5f07eb05b Mon Sep 17 00:00:00 2001 From: Quentin Presley Date: Fri, 7 Apr 2017 16:00:13 -0400 Subject: [PATCH] Fix comment lines --- lib/sql.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.