Skip to content

Commit

Permalink
docs cmit prepublish
Browse files Browse the repository at this point in the history
  • Loading branch information
pasupulaphani committed Feb 10, 2017
1 parent 4e905e7 commit ad4eb53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/PgPool.html
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@ <h4 class="name" id="query"><span class="type-signature"></span>query<span class


<div class="description">
<p>Run Postgres query https://github.com/brianc/node-postgres/wiki/Client#querystring-querytext-array-values-optional-function-callback-query</p>
<p>Run Postgres query <a href="https://github.com/brianc/node-postgres/wiki/Client#querystring-querytext-array-values-optional-function-callback-query">Client#querytext-arrayvalues</a></p>
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h3>Getting started</h3><pre class="prettyprint source"><code> npm install no
<pre class="prettyprint source"><code> var PgPool = require(&quot;node-pg-connection-pool&quot;);
var pool = new PgPool();

const result = await pool.query(&quot;SELECT 1;&quot;);</code></pre></li>
const result = await pool.query(&quot;SELECT $1::int AS number;&quot;, [&quot;1&quot;]);</code></pre></li>
<li><p>Want postgres raw connection? you got it</p>
<pre class="prettyprint source"><code> pool.acquire()
.then(client => {
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <h1 class="page-title">index.js</h1>
};

/**
* Run Postgres query https://github.com/brianc/node-postgres/wiki/Client#querystring-querytext-array-values-optional-function-callback-query
* Run Postgres query [Client#querytext-arrayvalues]{@link https://github.com/brianc/node-postgres/wiki/Client#querystring-querytext-array-values-optional-function-callback-query}
*
* @param {string} queryText - sql query
* @param {array} arrayValues - array values
Expand Down

0 comments on commit ad4eb53

Please sign in to comment.