Skip to content

Commit

Permalink
docs fix (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
smsaladi authored and methane committed Dec 4, 2016
1 parent 755dfdc commit eced982
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/user/development.rst
Expand Up @@ -17,7 +17,7 @@ Go to the ``docs`` directory and run ``make html``.
Test Suite
-----------

If you would like to run the test suite, create database for test like this::
If you would like to run the test suite, create a database for testing like this::

mysql -e 'create database test_pymysql DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'
mysql -e 'create database test_pymysql2 DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'
Expand Down
6 changes: 3 additions & 3 deletions pymysql/cursors.py
Expand Up @@ -23,7 +23,7 @@ class Cursor(object):
This is the object you use to interact with the database.
"""

#: Max stetement size which :meth:`executemany` generates.
#: Max statement size which :meth:`executemany` generates.
#:
#: Max size of allowed statement is max_allowed_packet - packet_header_size.
#: Default value of max_allowed_packet is 1048576.
Expand Down Expand Up @@ -403,8 +403,8 @@ class SSCursor(Cursor):
or for connections to remote servers over a slow network.
Instead of copying every row of data into a buffer, this will fetch
rows as needed. The upside of this, is the client uses much less memory,
and rows are returned much faster when traveling over a slow network,
rows as needed. The upside of this is the client uses much less memory,
and rows are returned much faster when traveling over a slow network
or if the result set is very big.
There are limitations, though. The MySQL protocol doesn't support
Expand Down

0 comments on commit eced982

Please sign in to comment.