浏览代码

django docs minor tweaks

Daniele Procida 13 年之前
父节点
当前提交
bbd88426d9
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/django/first-steps-with-django.rst

+ 2 - 2
docs/django/first-steps-with-django.rst

@@ -62,7 +62,7 @@ and the worker will automatically go through the apps in ``INSTALLED_APPS``
 to import these modules.
 to import these modules.
 
 
 For a simple demonstration we can create a new Django app called
 For a simple demonstration we can create a new Django app called
-``celerytest``.  To create this app you need to be in the directoryw
+``celerytest``.  To create this app you need to be in the directory
 of your Django project where ``manage.py`` is located and execute::
 of your Django project where ``manage.py`` is located and execute::
 
 
     $ python manage.py startapp celerytest
     $ python manage.py startapp celerytest
@@ -79,7 +79,7 @@ a new file called ``celerytest/tasks.py``:
         return x + y
         return x + y
 
 
 Our example task is pretty pointless, it just returns the sum of two
 Our example task is pretty pointless, it just returns the sum of two
-arguments, but it will do for demonstration, and it is referenced in many
+arguments, but it will do for demonstration, and it is referred to in many
 parts of the Celery documentation.
 parts of the Celery documentation.
 
 
 Starting the worker process
 Starting the worker process