Merge pull request #220 from andersmurphy/patch-1

Fix typo :repeatedable-read -> :repeatable-read
This commit is contained in:
Sean Corfield 2022-09-05 12:16:55 -07:00 committed by GitHub
commit 65b26a0fa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ In addition to the above, `next.jdbc/execute-batch!` (which may create a `Prepar
The `transact` function and `with-transaction` macro accept the following options: The `transact` function and `with-transaction` macro accept the following options:
* `:isolation` -- a keyword that identifies the isolation to be used for this transaction: `:none`, `:read-committed`, `:read-uncommitted`, `:repeatedable-read`, or `:serializable`; these represent increasingly strict levels of transaction isolation and may not all be available depending on the database and/or JDBC driver being used, * `:isolation` -- a keyword that identifies the isolation to be used for this transaction: `:none`, `:read-committed`, `:read-uncommitted`, `:repeatable-read`, or `:serializable`; these represent increasingly strict levels of transaction isolation and may not all be available depending on the database and/or JDBC driver being used,
* `:read-only` -- a `Boolean` that indicates whether the transaction should be read-only or not (the default), * `:read-only` -- a `Boolean` that indicates whether the transaction should be read-only or not (the default),
* `:rollback-only` -- a `Boolean` that indicates whether the transaction should commit on success (the default) or rollback. * `:rollback-only` -- a `Boolean` that indicates whether the transaction should commit on success (the default) or rollback.