Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f683ee7

Browse files
carsonipmethane
authored andcommittedMar 3, 2019
Fix typo in docstring and minor formatting (#336)
1 parent 7893c5a commit f683ee7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎MySQLdb/_mysql.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ _mysql_ConnectionObject_commit(
732732
}
733733

734734
static char _mysql_ConnectionObject_rollback__doc__[] =
735-
"Rolls backs the current transaction\n\
735+
"Rolls back the current transaction\n\
736736
";
737737
static PyObject *
738738
_mysql_ConnectionObject_rollback(

‎MySQLdb/cursors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ class Cursor(CursorStoreResultMixIn, CursorTupleRowsMixIn,
471471

472472
class DictCursor(CursorStoreResultMixIn, CursorDictRowsMixIn,
473473
BaseCursor):
474-
"""This is a Cursor class that returns rows as dictionaries and
474+
"""This is a Cursor class that returns rows as dictionaries and
475475
stores the result set in the client."""
476476

477477

0 commit comments

Comments
 (0)
Please sign in to comment.