From 44b0aeb048c1019e3cdd42fd2bdf9c2c8ffb7429 Mon Sep 17 00:00:00 2001 From: Marc Schlaich Date: Tue, 29 Apr 2014 14:34:21 +0200 Subject: [PATCH] Fixed typo. --- flask/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/cli.py b/flask/cli.py index adca5ca1..2e6c8318 100644 --- a/flask/cli.py +++ b/flask/cli.py @@ -290,7 +290,7 @@ Example usage: help='The port to bind to.') @click.option('--reload/--no-reload', default=None, help='Enable or disable the reloader. By default the reloader ' - 'is active is debug is enabled.') + 'is active if debug is enabled.') @click.option('--debugger/--no-debugger', default=None, help='Enable or disable the debugger. By default the debugger ' 'is active if debug is enabled.')