Merge pull request #213 from kianmeng/fix-typos

Fix typos
pull/214/head
Catherine Devlin 2022-06-11 14:56:42 -05:00 committed by GitHub
commit 59de1b6810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ is also the syntax to denote a SQL comment, the parser needs to make some assump
Installing
----------
Install the lastest release with::
Install the latest release with::
pip install ipython-sql

View File

@ -54,7 +54,7 @@ class UnicodeWriter(object):
data = self.queue.getvalue()
if six.PY2:
data = data.decode("utf-8")
# ... and reencode it into the target encoding
# ... and re-encode it into the target encoding
data = self.encoder.encode(data)
# write to the target stream
self.stream.write(data)