Skip to content

Commit 475a51b

Browse files
Spelling updates from John Bampton (#479).
1 parent 3b22367 commit 475a51b

19 files changed

+29
-26
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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ Thick Mode Changes
2929
Common Changes
3030
++++++++++++++
3131

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

3336
oracledb 3.1.0 (April 2025)
3437
---------------------------
@@ -342,7 +345,7 @@ Thin Mode Changes
342345
connection string.
343346
#) Added :meth:`oracledb.enable_thin_mode()` as a means of enabling
344347
python-oracledb Thin mode without waiting for an initial connection to be
345-
succesfully established. Since python-oracledb defaults to Thin mode, this
348+
successfully established. Since python-oracledb defaults to Thin mode, this
346349
method is mostly useful for applications with multiple threads concurrently
347350
creating connections to databases when the application starts
348351
(`issue 408 <https://github.com/oracle/python-oracledb/issues/408>`__).
@@ -1719,7 +1722,7 @@ cx_Oracle 8.2 (May 2021)
17191722
connection.
17201723
#) Eliminated a memory leak when calling :meth:`SodaOperation.filter()` with a
17211724
dictionary.
1722-
#) The distributed transaction handle assosciated with the connection is now
1725+
#) The distributed transaction handle associated with the connection is now
17231726
cleared on commit or rollback (`issue 530
17241727
<https://github.com/oracle/python-cx_Oracle/issues/530>`__).
17251728
#) 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
@@ -2512,7 +2512,7 @@ The :meth:`Connection.is_healthy()` method is an alternative to
25122512
it does not perform a full connection check.
25132513

25142514
If the ``getmode`` parameter in :meth:`oracledb.create_pool()` is set to
2515-
:data:`oracledb.POOL_GETMODE_TIMEDWAIT`, then the maxium amount of time an
2515+
:data:`oracledb.POOL_GETMODE_TIMEDWAIT`, then the maximum amount of time an
25162516
:meth:`~ConnectionPool.acquire()` call will wait to get a connection from the
25172517
pool is limited by the value of the :data:`ConnectionPool.wait_timeout`
25182518
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)