]> granicus.if.org Git - python/commitdiff
fix typo
authorFred Drake <fdrake@acm.org>
Mon, 29 Oct 2007 16:56:50 +0000 (16:56 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 29 Oct 2007 16:56:50 +0000 (16:56 +0000)
Lib/tempfile.py

index d725a9d0b64606544e90f58e5dbb75f8a5d29203..85d58e6518ffbb4c0f1ed5d7c512896b1f132a1c 100644 (file)
@@ -497,7 +497,7 @@ class SpooledTemporaryFile:
         else:
             # Setting newline="\n" avoids newline translation;
             # this is important because otherwise on Windows we'd
-            # hget double newline translation upon rollover().
+            # get double newline translation upon rollover().
             self._file = _io.StringIO(encoding=encoding, newline="\n")
         self._max_size = max_size
         self._rolled = False