Skip to content

Commit f0d9f4a

Browse files
committed
Be consistent with trailing commas
1 parent 28c51ea commit f0d9f4a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/webapp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function init() {
5555
// events: false, // whether to handle Oracle Database FAN and RLB events or support CQN
5656
// externalAuth: false, // whether connections should be established using External Authentication
5757
// homogeneous: true, // all connections in the pool have the same credentials
58-
// poolAlias: 'myalias' // set an alias to allow access to the pool via a name
58+
// poolAlias: 'myalias', // set an alias to allow access to the pool via a name
5959
// poolIncrement: 1, // only grow the pool by one connection at a time
6060
// poolMax: 4, // maximum size of the pool. Increase UV_THREADPOOL_SIZE if you increase poolMax
6161
// poolMin: 0, // start with no connections; let the pool shrink completely

examples/webappawait.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async function init() {
5656
// events: false, // whether to handle Oracle Database FAN and RLB events or support CQN
5757
// externalAuth: false, // whether connections should be established using External Authentication
5858
// homogeneous: true, // all connections in the pool have the same credentials
59-
// poolAlias: 'myalias' // set an alias to allow access to the pool via a name.
59+
// poolAlias: 'myalias', // set an alias to allow access to the pool via a name.
6060
// poolIncrement: 1, // only grow the pool by one connection at a time
6161
// poolMax: 4, // maximum size of the pool. Increase UV_THREADPOOL_SIZE if you increase poolMax
6262
// poolMin: 0, // start with no connections; let the pool shrink completely

examples/webapppromises.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function init() {
5555
// events: false, // whether to handle Oracle Database FAN and RLB events or support CQN
5656
// externalAuth: false, // whether connections should be established using External Authentication
5757
// homogeneous: true, // all connections in the pool have the same credentials
58-
// poolAlias: 'myalias' // set an alias to allow access to the pool via a name.
58+
// poolAlias: 'myalias', // set an alias to allow access to the pool via a name.
5959
// poolIncrement: 1, // only grow the pool by one connection at a time
6060
// poolMax: 4, // maximum size of the pool. Increase UV_THREADPOOL_SIZE if you increase poolMax
6161
// poolMin: 0, // start with no connections; let the pool shrink completely

0 commit comments

Comments
 (0)