diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index e79c105..f20ef24 100644
a
|
b
|
Example usage::
|
392 | 392 | --noreload |
393 | 393 | ~~~~~~~~~~ |
394 | 394 | |
395 | | Use the ``--noreload`` option to disable the use of the auto-reloader. This |
396 | | means any Python code changes you make while the server is running will *not* |
397 | | take effect if the particular Python modules have already been loaded into |
398 | | memory. |
| 395 | To disable auto-reloading of code while the development server is running, use the |
| 396 | ``--noreload`` option, like so:: |
| 397 | |
| 398 | django-admin.py runserver --noreload |
| 399 | |
| 400 | This means any Python code changes you make while the server is running will |
| 401 | *not* take effect if the particular Python modules have already been loaded |
| 402 | into memory. |
399 | 403 | |
400 | 404 | Examples of using different ports and addresses |
401 | 405 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
… |
… |
documentation.
|
426 | 430 | |
427 | 431 | .. _serving static files: ../static_files/ |
428 | 432 | |
429 | | Turning off auto-reload |
430 | | ~~~~~~~~~~~~~~~~~~~~~~~ |
431 | | |
432 | | To disable auto-reloading of code while the development server is running, use the |
433 | | ``--noreload`` option, like so:: |
434 | | |
435 | | django-admin.py runserver --noreload |
436 | | |
437 | 433 | shell |
438 | 434 | ----- |
439 | 435 | |