summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:35:44 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:35:44 (GMT)
commit8d496add74530767cad3aa8b5b371b9a7f0b8498 (patch)
treefd0d144e4c175ec6b1e1491d801b2fdf27e9fc6d /Objects/fileobject.c
parent56da8fa581beb23fd0a2815533f7ee8571a0ef2f (diff)
downloadcpython-8d496add74530767cad3aa8b5b371b9a7f0b8498.zip
cpython-8d496add74530767cad3aa8b5b371b9a7f0b8498.tar.gz
cpython-8d496add74530767cad3aa8b5b371b9a7f0b8498.tar.bz2
Issue #27171: Fix typos in documentation, code comments, and tests
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r--Objects/fileobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 9ae068c..b29da8a 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -835,7 +835,7 @@ file_truncate(PyFileObject *f, PyObject *args)
if (initialpos == -1)
goto onioerror;
- /* Set newsize to current postion if newsizeobj NULL, else to the
+ /* Set newsize to current position if newsizeobj NULL, else to the
* specified value.
*/
if (newsizeobj != NULL) {