diff --git a/native-datatypes.html b/native-datatypes.html
index c317f4b..10781b4 100755
--- a/native-datatypes.html
+++ b/native-datatypes.html
@@ -490,7 +490,7 @@ AttributeError: 'tuple' object has no attribute 'remove'
- Tuples are faster than lists. If you’re defining a constant set of values and all you’re ever going to do with it is iterate through it, use a tuple instead of a list.
- It makes your code safer if you “write-protect” data that doesn’t need to be changed. Using a tuple instead of a list is like having an implied
assert statement that shows this data is constant, and that special thought (and a specific function) is required to override that.
- - Some tuples can be used as dictionary keys, as you’ll see later in this chapter. (Lists can never be used as dictionary keys.)
+
- Some tuples can be used as dictionary keys (specifically, tuples that contain immutable values like strings, numbers, and other tuples). Lists can never be used as dictionary keys, because lists are not immutable.