diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-02-15 18:41:30 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-02-16 00:38:15 +0000 |
commit | 96b7912bcf4f766719e51daa25273d5472018623 (patch) | |
tree | 3c62c88a2019d20e10a57546d0a46465ed7ce026 | |
parent | 8001795b95f46cef56d67fc12713bed5f178e6c1 (diff) | |
download | psycopg2-96b7912bcf4f766719e51daa25273d5472018623.tar.gz |
Typo fixed in DictRow doc.
-rw-r--r-- | lib/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extras.py b/lib/extras.py index 3b5ea8d..26b6208 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -129,7 +129,7 @@ class DictCursor(DictCursorBase): self._query_executed = 0 class DictRow(list): - """A row object that allow by-colun-name access to data.""" + """A row object that allow by-colmun-name access to data.""" __slots__ = ('_index',) |