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