summaryrefslogtreecommitdiffstats
path: root/Doc/howto/doanddont.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-22 12:31:45 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-22 12:31:45 (GMT)
commit907a720f894a7b267e15b3bb1ba39f2d8677c0fe (patch)
tree35117e67e538ba92d38b987683440fee89ad93cc /Doc/howto/doanddont.rst
parenta14a4e8b84093184fefc908b241523915893850d (diff)
downloadcpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.zip
cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.gz
cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.bz2
A lot more typo fixes by Ori Avtalion.
Diffstat (limited to 'Doc/howto/doanddont.rst')
-rw-r--r--Doc/howto/doanddont.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst
index a350753..e1325f8 100644
--- a/Doc/howto/doanddont.rst
+++ b/Doc/howto/doanddont.rst
@@ -114,7 +114,7 @@ from module import name1, name2
This is a "don't" which is much weaker then the previous "don't"s but is still
something you should not do if you don't have good reasons to do that. The
reason it is usually bad idea is because you suddenly have an object which lives
-in two seperate namespaces. When the binding in one namespace changes, the
+in two separate namespaces. When the binding in one namespace changes, the
binding in the other will not, so there will be a discrepancy between them. This
happens when, for example, one module is reloaded, or changes the definition of
a function at runtime.