Update docs with additional argument to qb.delete

This commit is contained in:
Timothy Warren 2014-10-27 13:37:43 -04:00
parent 16cab60352
commit 707b10d3ca
3 changed files with 6 additions and 4 deletions

View File

@ -745,7 +745,7 @@
<ul class="dummy"> <ul class="dummy">
<li> <li>
<a href="query-builder.js.html">query-builder.js</a>, <a href="query-builder.js.html">query-builder.js</a>,
<a href="query-builder.js.html#sunlight-1-line-860">line 860</a> <a href="query-builder.js.html#sunlight-1-line-861">line 861</a>
</li> </li>
</ul> </ul>
</dd> </dd>
@ -944,7 +944,7 @@
<ul class="dummy"> <ul class="dummy">
<li> <li>
<a href="query-builder.js.html">query-builder.js</a>, <a href="query-builder.js.html">query-builder.js</a>,
<a href="query-builder.js.html#sunlight-1-line-838">line 838</a> <a href="query-builder.js.html#sunlight-1-line-839">line 839</a>
</li> </li>
</ul> </ul>
</dd> </dd>
@ -1145,7 +1145,7 @@
<ul class="dummy"> <ul class="dummy">
<li> <li>
<a href="query-builder.js.html">query-builder.js</a>, <a href="query-builder.js.html">query-builder.js</a>,
<a href="query-builder.js.html#sunlight-1-line-822">line 822</a> <a href="query-builder.js.html#sunlight-1-line-823">line 823</a>
</li> </li>
</ul> </ul>
</dd> </dd>
@ -1336,7 +1336,7 @@
<ul class="dummy"> <ul class="dummy">
<li> <li>
<a href="query-builder.js.html">query-builder.js</a>, <a href="query-builder.js.html">query-builder.js</a>,
<a href="query-builder.js.html#sunlight-1-line-849">line 849</a> <a href="query-builder.js.html#sunlight-1-line-850">line 850</a>
</li> </li>
</ul> </ul>
</dd> </dd>

View File

@ -868,6 +868,7 @@ var QueryBuilder = function(driver, adapter) {
* Run the generated delete query * Run the generated delete query
* *
* @param {String} table - The table to insert into * @param {String} table - The table to insert into
* @param {Object} [where] - Where clause for delete statement
* @param {Function} callback - Callback for handling response from the database * @param {Function} callback - Callback for handling response from the database
* @return void * @return void
*/ */

View File

@ -793,6 +793,7 @@ var QueryBuilder = function(driver, adapter) {
* Run the generated delete query * Run the generated delete query
* *
* @param {String} table - The table to insert into * @param {String} table - The table to insert into
* @param {Object} [where] - Where clause for delete statement
* @param {Function} callback - Callback for handling response from the database * @param {Function} callback - Callback for handling response from the database
* @return void * @return void
*/ */