Skip to content

Commit 45d0019

Browse files
committed
Consistently use hyphen in "round-trip" as the OCI manual does
1 parent 7a9434f commit 45d0019

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ fetches](#fetchingrows), during ResultSet [`getRow()`](#getrow) calls,
754754
and for [`queryStream()`](#querystream). It is not used for
755755
[`getRows()`](#getrows).
756756

757-
Increasing this value reduces the number of round trips to the
757+
Increasing this value reduces the number of round-trips to the
758758
database but increases memory usage for each data fetch. For queries
759759
that return a large number of rows, higher values of `fetchArraySize`
760760
may give better performance. For queries that only return a few rows,
@@ -2493,7 +2493,7 @@ Pinging doesn't replace error checking during statement execution,
24932493
since network or database failure may occur in the time between
24942494
`ping()` and `execute()` calls.
24952495

2496-
Pinging requires a 'round trip' to the database so unnecessary ping
2496+
Pinging requires a round-trip to the database so unnecessary ping
24972497
calls should be avoided.
24982498

24992499
If `ping()` returns an error, the application should close the
@@ -4529,7 +4529,7 @@ connection.execute(
45294529
);
45304530
```
45314531
4532-
To do this without requiring the overhead of a 'round trip' to execute
4532+
To do this without requiring the overhead of a round-trip to execute
45334533
the `ALTER` statement, you could use a PL/SQL trigger:
45344534
45354535
```sql
@@ -6947,7 +6947,7 @@ to identify and resolve unnecessary database resource usage, or
69476947
improper access.
69486948
69496949
The attributes are set on a [connection](#propdbconclass) object and
6950-
sent to the database on the next 'round-trip' from node-oracledb, for
6950+
sent to the database on the next round-trip from node-oracledb, for
69516951
example, with `execute()`:
69526952
69536953
```javascript

0 commit comments

Comments
 (0)