瀏覽代碼

Fixed #9257 -- Fixed a small mismatch in text in part 2 of the tutorial.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9134 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Malcolm Tredinnick 16 年之前
父節點
當前提交
e466d2ea53
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      docs/intro/tutorial02.txt

+ 4 - 4
docs/intro/tutorial02.txt

@@ -35,10 +35,10 @@ activate the admin site for your installation, do these three things:
       to :setting:`INSTALLED_APPS`, the database tables need to be updated.
 
     * Edit your ``mysite/urls.py`` file and uncomment the lines below the
-      "Uncomment this for admin:" comments. This file is a URLconf; we'll dig
-      into URLconfs in the next tutorial. For now, all you need to know is that
-      it maps URL roots to applications. In the end, you should have a
-      ``urls.py`` file that looks like this:
+      "Uncomment the next two lines..." comment. This file is a URLconf;
+      we'll dig into URLconfs in the next tutorial. For now, all you need to
+      know is that it maps URL roots to applications. In the end, you should
+      have a ``urls.py`` file that looks like this:
 
       .. parsed-literal::