From 47d7f20d9b291778992920e0a4e3d9ac85b139c4 Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Mon, 27 Oct 2014 11:03:07 +0100 Subject: [PATCH] Fix two typos in the description of FlaskGroup. --- flask/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flask/cli.py b/flask/cli.py index 8b75643a..47c0406a 100644 --- a/flask/cli.py +++ b/flask/cli.py @@ -257,10 +257,10 @@ class AppGroup(click.Group): class FlaskGroup(AppGroup): - """Special subclass of the the :class:`AppGroup` group that supports + """Special subclass of the :class:`AppGroup` group that supports loading more commands from the configured Flask app. Normally a developer does not have to interface with this class but there are - some very advanced usecases for which it makes sense to create an + some very advanced use cases for which it makes sense to create an instance of this. For information as of why this is useful see :ref:`custom-scripts`.