Skip to content

Commit 409d3ee

Browse files
committed
BUG32740486: Fix typo in docstring
1 parent 2e751ab commit 409d3ee

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ v8.0.26
1515
- WL#14440: Support for authentication_kerberos_client authentication plugin
1616
- WL#14237: Support query attributes
1717
- BUG#32778827: Raise an error if the _id is different when replacing a document
18+
- BUG#32740486: Fix typo in docstring
1819
- BUG#32623479: The X DevAPI returns str for binary types values
1920
- BUG#32585611: Fix broken links in X DevAPI reference documentation search
2021

lib/mysql/connector/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ def _handle_result(self, result):
11771177
def execute(self, operation, params=None, multi=False): # multi is unused
11781178
"""Prepare and execute a MySQL Prepared Statement
11791179
1180-
This method will preare the given operation and execute it using
1180+
This method will prepare the given operation and execute it using
11811181
the optionally given parameters.
11821182
11831183
If the cursor instance already had a prepared statement, it is

lib/mysql/connector/cursor_cext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ def reset(self, free=True):
914914
def execute(self, operation, params=None, multi=False): # multi is unused
915915
"""Prepare and execute a MySQL Prepared Statement
916916
917-
This method will preare the given operation and execute it using
917+
This method will prepare the given operation and execute it using
918918
the given parameters.
919919
920920
If the cursor instance already had a prepared statement, it is

0 commit comments

Comments
 (0)