summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-10-07 13:06:09 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-10-08 20:42:50 +0300
commite47063bfe0de1318c12a4f9ef67b9538cad34489 (patch)
tree898a00af2714e1e52b8decb69b1776ad95030def /lib/sqlalchemy/ext
parent80861dffa9f2a2564dd5e854d97006d9fff48a18 (diff)
downloadsqlalchemy-e47063bfe0de1318c12a4f9ef67b9538cad34489.tar.gz
Spelling fixes
Diffstat (limited to 'lib/sqlalchemy/ext')
-rw-r--r--lib/sqlalchemy/ext/indexable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/indexable.py b/lib/sqlalchemy/ext/indexable.py
index d0495fe5f..52a502ae4 100644
--- a/lib/sqlalchemy/ext/indexable.py
+++ b/lib/sqlalchemy/ext/indexable.py
@@ -159,7 +159,7 @@ data structure does not exist, and a set operation is called:
the default data structure will be a Python list of ``None`` values,
at least as long as the index value; the value is then set at its
place in the list. This means for an index value of zero, the list
- will be initalized to ``[None]`` before setting the given value,
+ will be initialized to ``[None]`` before setting the given value,
and for an index value of five, the list will be initialized to
``[None, None, None, None, None]`` before setting the fifth element
to the given value. Note that an existing list is **not** extended