summaryrefslogtreecommitdiff
path: root/Modules/_io/textio.c
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2012-02-26 02:14:08 +0100
committerÉric Araujo <merwok@netwok.org>2012-02-26 02:14:08 +0100
commitfab976624df27bfcf999f93a1047173c27555725 (patch)
treedc38bf29f70d7883f30050bd1b0058e6f34ffa22 /Modules/_io/textio.c
parenta6091998afc5bb7940315ef7b105e1703f64a375 (diff)
downloadcpython-git-fab976624df27bfcf999f93a1047173c27555725.tar.gz
Fix typo in “seperat{or,ion}”
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r--Modules/_io/textio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c
index 9c5f4416d1..baf0a971a7 100644
--- a/Modules/_io/textio.c
+++ b/Modules/_io/textio.c
@@ -627,7 +627,7 @@ PyDoc_STRVAR(textiowrapper_doc,
"enabled. With this enabled, on input, the lines endings '\\n', '\\r',\n"
"or '\\r\\n' are translated to '\\n' before being returned to the\n"
"caller. Conversely, on output, '\\n' is translated to the system\n"
- "default line seperator, os.linesep. If newline is any other of its\n"
+ "default line separator, os.linesep. If newline is any other of its\n"
"legal values, that newline becomes the newline when the file is read\n"
"and it is returned untranslated. On output, '\\n' is converted to the\n"
"newline.\n"