]> granicus.if.org Git - python/commitdiff
Fix typo
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 25 Feb 2007 15:02:38 +0000 (15:02 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 25 Feb 2007 15:02:38 +0000 (15:02 +0000)
Lib/xreload.py

index ba5370e7f00354d70054847a221b0409aac819d7..360dc673a2e688661d37f8500ad867cf0bee3ac2 100644 (file)
@@ -55,7 +55,7 @@ def xreload(mod):
     finally:
         if stream:
             stream.close()
-    # Execute the code im a temporary namespace; if this fails, no changes
+    # Execute the code in a temporary namespace; if this fails, no changes
     tmpns = {}
     exec(code, tmpns)
     # Now we get to the hard part