Skip to content

Commit 8ad9e14

Browse files
Merge pull request #39 from AkshataMoon/main
Fixed typos
2 parents 5e92d15 + 199956c commit 8ad9e14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ behavior of that Publisher in regards to deferred execution and multiple Subscri
197197
subscribes, supports multiple Subscribers, and caches the result of a database call
198198
(the same result of the same call is emitted to each Subscriber).
199199
- Typically, a Publisher of multiple items defers execution until a Subscriber
200-
signals demand, and does not support mulitple subscribers.
200+
signals demand, and does not support multiple subscribers.
201201

202202
### Errors
203203
- The error code of an R2dbcException is an [Oracle Database
@@ -224,7 +224,7 @@ of each row affected by an INSERT or UPDATE.
224224
- This behavior may change in a later release.
225225
- Programmers are advised not to use the ROWID as if it were a primary key.
226226
- The ROWID of a row may change.
227-
- After a row is deleted, it's ROWID may be reassigned to a new row.
227+
- After a row is deleted, its ROWID may be reassigned to a new row.
228228
- Further Reading: https://asktom.oracle.com/pls/apex/asktom.search?tag=is-it-safe-to-use-rowid-to-locate-a-row
229229
- A **blocking database call** is executed by a Statement returning generated
230230
values for a non-empty set of column names.
@@ -324,7 +324,7 @@ The following security guidelines should be followed when programming with the O
324324
- Option.sensitiveValueOf(OracleConnection.CONNECTION_PROPERTY_THIN_JAVAX_NET_SSL_KEYSTOREPASSWORD)
325325
- Option.sensitiveValueOf(OracleConnection.CONNECTION_PROPERTY_THIN_JAVAX_NET_SSL_TRUSTSTOREPASSWORD)
326326
### Defend Against Denial-of-Service Attacks
327-
- Use a connection pool and configure a maximum size to limit the amount of database sessions created by ConnectionFactory.create()
327+
- Use a connection pool and configure a maximum size to limit the number of database sessions created by ConnectionFactory.create()
328328
- Enforce a maximum batch size to limit invocations of Statement.add() or Batch.add(String).
329329
- Enforce a maximum fetch size to limit values supplied to Statement.fetchSize(int).
330330
- Enforce a maximum buffer size to limit memory usage when reading Blob and Clob objects.

0 commit comments

Comments
 (0)