From 839255ef42f0233f8e6e132bf38c738d140c0551 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 29 Jul 2009 14:32:07 -0400 Subject: [PATCH] typos --- native-datatypes.html | 2 +- unit-testing.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/native-datatypes.html b/native-datatypes.html index b746cef..a697224 100755 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -505,7 +505,7 @@ AttributeError: 'tuple' object has no attribute 'remove'
 >>> v = ('a', 2, True)
->>> (x, y, z) = v       
+>>> (x, y, z) = v       
 >>> x
 'a'
 >>> y
diff --git a/unit-testing.html b/unit-testing.html
index 30d275d..08f8da3 100755
--- a/unit-testing.html
+++ b/unit-testing.html
@@ -653,7 +653,7 @@ FAILED (failures=2)
result = 0 index = 0 for numeral, integer in romanNumeralMap: - while s[index:index+len(numeral)] == numeral: + while s[index:index+len(numeral)] == numeral: result += integer index += len(numeral) return result