Skip to content

Commit 3e57f6f

Browse files
Miscellaneous grammar and spelling fixes by John Bampton (PR #479).
1 parent a20e756 commit 3e57f6f

18 files changed

+22
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Examples can be found in the [/samples][samples] directory and the
5959

6060
## Help
6161

62-
Questions can be asked in [Github Discussions][ghdiscussions].
62+
Questions can be asked in [GitHub Discussions][ghdiscussions].
6363

6464
Problem reports can be raised in [GitHub Issues][ghissues].
6565

doc/src/api_manual/module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2664,7 +2664,7 @@ Oracledb Methods
26642664
are parsed by python-oracledb itself and a generated connect descriptor is
26652665
sent to the Oracle Client libraries. This value is only used in the
26662666
python-oracledb Thick mode. The default value is
2667-
:attr:`defualts.thick_mode_dsn_passthrough`. For more information, see
2667+
:attr:`defaults.thick_mode_dsn_passthrough`. For more information, see
26682668
:ref:`usingconfigfiles`.
26692669

26702670
The ``extra_auth_params`` parameter is expected to be a dictionary

doc/src/release_notes.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Thick Mode Changes
2727
Common Changes
2828
++++++++++++++
2929

30+
#) Miscellaneous grammar and spelling fixes by John Bampton
31+
(`PR 479 <https://github.com/oracle/python-oracledb/pull/479>`__).
3032

3133
oracledb 3.1.0 (April 2025)
3234
---------------------------
@@ -340,7 +342,7 @@ Thin Mode Changes
340342
connection string.
341343
#) Added :meth:`oracledb.enable_thin_mode()` as a means of enabling
342344
python-oracledb Thin mode without waiting for an initial connection to be
343-
succesfully established. Since python-oracledb defaults to Thin mode, this
345+
successfully established. Since python-oracledb defaults to Thin mode, this
344346
method is mostly useful for applications with multiple threads concurrently
345347
creating connections to databases when the application starts
346348
(`issue 408 <https://github.com/oracle/python-oracledb/issues/408>`__).
@@ -1717,7 +1719,7 @@ cx_Oracle 8.2 (May 2021)
17171719
connection.
17181720
#) Eliminated a memory leak when calling :meth:`SodaOperation.filter()` with a
17191721
dictionary.
1720-
#) The distributed transaction handle assosciated with the connection is now
1722+
#) The distributed transaction handle associated with the connection is now
17211723
cleared on commit or rollback (`issue 530
17221724
<https://github.com/oracle/python-cx_Oracle/issues/530>`__).
17231725
#) Added a check to ensure that when setting variables or object attributes,

doc/src/user_guide/appendix_b.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ differs from the python-oracledb Thick mode in the following ways:
148148
``handle`` parameters. The parameters that are ignored in the Thick mode
149149
include ``wallet_password``, ``disable_oob``, and ``debug_jdwp`` parameters.
150150

151-
* The python-oracledb Thin mode only suppports :ref:`homogeneous
151+
* The python-oracledb Thin mode only supports :ref:`homogeneous
152152
<connpooltypes>` pools.
153153

154154
* The python-oracledb Thin mode creates connections in a daemon thread and so

doc/src/user_guide/connection_handling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2448,7 +2448,7 @@ The :meth:`Connection.is_healthy()` method is an alternative to
24482448
it does not perform a full connection check.
24492449

24502450
If the ``getmode`` parameter in :meth:`oracledb.create_pool()` is set to
2451-
:data:`oracledb.POOL_GETMODE_TIMEDWAIT`, then the maxium amount of time an
2451+
:data:`oracledb.POOL_GETMODE_TIMEDWAIT`, then the maximum amount of time an
24522452
:meth:`~ConnectionPool.acquire()` call will wait to get a connection from the
24532453
pool is limited by the value of the :data:`ConnectionPool.wait_timeout`
24542454
parameter. A call that cannot be immediately satisfied will wait no longer

doc/src/user_guide/exception_handling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ in the examples below:
8484
DPY-4010: a bind variable replacement value for placeholder ":1" was not provided
8585

8686
* Connection messages: The python-oracledb Thin mode connection and networking
87-
is handled by Python itself. Some errors portable accross operating systems
87+
is handled by Python itself. Some errors portable across operating systems
8888
and Python versions have DPY-prefixed errors displayed by python-oracledb.
8989
Other messages are returned directly from Python and may vary accordingly.
9090
The traditional Oracle connection errors with prefix "ORA" are not shown. For

doc/src/user_guide/extending.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Subclassing Connections
1616
=======================
1717

1818
Subclassing enables applications to change python-oracledb, for example by
19-
extending connection and statement execution behvior. This can be used to
19+
extending connection and statement execution behavior. This can be used to
2020
alter, or log, connection and execution parameters, or to further change
2121
python-oracledb functionality.
2222

@@ -220,7 +220,7 @@ strings prefixed with "myprefix://".
220220
In myhookfunc: protocol=myprefix arg=localhost/orclpdb1
221221
host=localhost, port=1521, service name=orclpdb1
222222

223-
7. To uninstall the plugin, simply remove the packge::
223+
7. To uninstall the plugin, simply remove the package::
224224

225225
python -m pip uninstall myplugin
226226

doc/src/user_guide/initialization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ going to be used. In one special case, you may wish to explicitly enable Thin
317317
mode to prevent Thick mode from being enabled later.
318318

319319
To allow application portability, the driver's internal logic allows
320-
applications to initally attempt :ref:`standalone connection
320+
applications to initially attempt :ref:`standalone connection
321321
<standaloneconnection>` creation in Thin mode, but then lets them :ref:`enable
322322
Thick mode <enablingthick>` if that connection is unsuccessful. An example is
323323
when trying to connect to an Oracle Database that turns out to be an old

samples/bind_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
# Inserting a single bind still needs tuples
8787
# -----------------------------------------------------------------------------
8888

89-
rows = [("Eleventh",), ("Twelth",)]
89+
rows = [("Eleventh",), ("Twelfth",)]
9090

9191
with connection.cursor() as cursor:
9292
cursor.executemany("insert into mytab(id, data) values (12, :1)", rows)

samples/bind_insert_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def main():
9292
# Inserting a single bind still needs tuples
9393
# -------------------------------------------------------------------------
9494

95-
rows = [("Eleventh",), ("Twelth",)]
95+
rows = [("Eleventh",), ("Twelfth",)]
9696

9797
await connection.executemany(
9898
"insert into mytab(id, data) values (12, :1)", rows

0 commit comments

Comments
 (0)