summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index fc968ebf8f..db6150a3e8 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -39,8 +39,8 @@ Creating a project
==================
If this is your first time using Django, you'll have to take care of some
-initial setup. Namely, you'll need to auto-generate some code that establishes a
-Django :term:`project` -- a collection of settings for an instance of Django,
+initial setup. Namely, you'll need to auto-generate some code that establishes
+a Django :term:`project` -- a collection of settings for an instance of Django,
including database configuration, Django-specific options and
application-specific settings.
@@ -122,8 +122,8 @@ You'll see the following output on the command line:
System check identified no issues (0 silenced).
- You have unapplied migrations; your app may not work properly until they are applied.
- Run 'python manage.py migrate' to apply them.
+ You have unapplied migrations; your app may not work properly until they are
+ applied. Run 'python manage.py migrate' to apply them.
|today| - 15:50:53
Django version |version|, using settings 'mysite.settings'
@@ -150,7 +150,8 @@ Now's a good time to note: **don't** use this server in anything resembling a
production environment. It's intended only for use while developing. (We're in
the business of making web frameworks, not web servers.)
-(To serve the site on a different port, see the :djadmin:`runserver` reference.)
+(To serve the site on a different port, see the :djadmin:`runserver`
+reference.)
.. admonition:: Automatic reloading of :djadmin:`runserver`