diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index e79c105..f20ef24 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -392,10 +392,14 @@ Example usage::
 --noreload
 ~~~~~~~~~~
 
-Use the ``--noreload`` option to disable the use of the auto-reloader. This
-means any Python code changes you make while the server is running will *not*
-take effect if the particular Python modules have already been loaded into
-memory.
+To disable auto-reloading of code while the development server is running, use the
+``--noreload`` option, like so::
+
+    django-admin.py runserver --noreload
+
+This means any Python code changes you make while the server is running will
+*not* take effect if the particular Python modules have already been loaded
+into memory.
 
 Examples of using different ports and addresses
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -426,14 +430,6 @@ documentation.
 
 .. _serving static files: ../static_files/
 
-Turning off auto-reload
-~~~~~~~~~~~~~~~~~~~~~~~
-
-To disable auto-reloading of code while the development server is running, use the
-``--noreload`` option, like so::
-
-    django-admin.py runserver --noreload
-
 shell
 -----
 
