Replace run --debug with --debug run in docs.

This commit is contained in:
Andrzej Bartosiński 2023-07-08 15:32:07 +02:00
parent cb825687a5
commit 2a60ded1d0
8 changed files with 11 additions and 11 deletions

View file

@ -43,7 +43,7 @@ The debugger is enabled by default when the development server is run in debug m
.. code-block:: text
$ flask --app hello run --debug
$ flask --app hello --debug run
When running from Python code, passing ``debug=True`` enables debug mode, which is
mostly equivalent.
@ -72,7 +72,7 @@ reloader should be disabled so they don't interfere with the external debugger.
.. code-block:: text
$ flask --app hello run --debug --no-debugger --no-reload
$ flask --app hello --debug run --no-debugger --no-reload
When running from Python: