From c83ecc393d1adcc9c49f6a1870da6d27f28aa38c Mon Sep 17 00:00:00 2001 From: Devgroup Date: Sun, 28 Mar 2021 03:58:27 +0200 Subject: [PATCH] Fix typo --- lib/mysql/connector/cursor.py | 2 +- lib/mysql/connector/cursor_cext.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mysql/connector/cursor.py b/lib/mysql/connector/cursor.py index 14491b9..c13887b 100644 --- a/lib/mysql/connector/cursor.py +++ b/lib/mysql/connector/cursor.py @@ -1186,7 +1186,7 @@ def _handle_result(self, result): def execute(self, operation, params=(), multi=False): # multi is unused """Prepare and execute a MySQL Prepared Statement - This method will preare the given operation and execute it using + This method will prepare the given operation and execute it using the optionally given parameters. If the cursor instance already had a prepared statement, it is diff --git a/lib/mysql/connector/cursor_cext.py b/lib/mysql/connector/cursor_cext.py index 5000606..87a0b29 100644 --- a/lib/mysql/connector/cursor_cext.py +++ b/lib/mysql/connector/cursor_cext.py @@ -924,7 +924,7 @@ def reset(self, free=True): def execute(self, operation, params=(), multi=False): # multi is unused """Prepare and execute a MySQL Prepared Statement - This method will preare the given operation and execute it using + This method will prepare the given operation and execute it using the given parameters. If the cursor instance already had a prepared statement, it is