diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst
index f44cb0b4e905a9df449107b31567f9e9fb0905ba..58b06eb5f2535671408e45153015b93d3cb859f9 100644
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -479,9 +479,9 @@ If the same attribute name occurs in both an instance and in a class,
 then attribute lookup prioritizes the instance::
 
     >>> class Warehouse:
-            purpose = 'storage'
-            region = 'west'
-
+    ...    purpose = 'storage'
+    ...    region = 'west'
+    ...
     >>> w1 = Warehouse()
     >>> print(w1.purpose, w1.region)
     storage west