Index: docs/intro/tutorial02.txt
===================================================================
--- docs/intro/tutorial02.txt	(revision 8975)
+++ docs/intro/tutorial02.txt	(working copy)
@@ -97,11 +97,11 @@
 But where's our poll app? It's not displayed on the admin index page.
 
 Just one thing to do: We need to tell the admin that ``Poll``
-objects have an admin interface. Edit the ``mysite/polls/admin.py`` file and
-add the following to the bottom of the file::
+objects have an admin interface. Create a file called ``admin.py`` in your
+``polls`` application and edit it to look like this::
 
+    from django.contrib import admin
     from mysite.polls.models import Poll
-    from django.contrib import admin
     
     admin.site.register(Poll)
 
