diff --git a/source/Collection_Data_Types.rst b/source/Collection_Data_Types.rst
index 9ca0d3e09f9587f96857071109ac19437268e393..5f4fcf5ad9c81188ccd0126b1b786754d7ef2d41 100644
--- a/source/Collection_Data_Types.rst
+++ b/source/Collection_Data_Types.rst
@@ -56,7 +56,7 @@ but not the references to this object, then the 2 variables x and y still refere
 compare with the exercise on string and integers:
 
 Since list are mutable, when ``+=`` is used the original list object is modified, so no rebinding of *x* is necessary.
-We can observe this using *id()* which give the memory adress of an object. This adress does not change after the
+We can observe this using *id()* which give the memory address of an object. This address does not change after the
 ``+=`` operation.
 
 .. note::