From 193b94b0eacb29378f294d1e31f59a35b68f076a Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sat, 25 Oct 2014 03:14:01 -0700 Subject: [PATCH] Fix typo: "lated later" >> "added later" --- docs/cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli.rst b/docs/cli.rst index a36c33a3..d6d45a50 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -108,7 +108,7 @@ they have the application context setup. Because of this, if you register a callback on ``app.cli`` with the :meth:`~flask.cli.AppGroup.command` the callback will automatically be wrapped through :func:`cli.with_appcontext` which informs the cli system to ensure that an application context is set -up. This behavior is not available if a command is lated later with +up. This behavior is not available if a command is added later with :func:`~click.Group.add_command` or through other means. It can also be disabled by passing ``with_appcontext=False`` to the