From 553b26f8579a21a2d3644cb3bc5cb2ed8cedabc5 Mon Sep 17 00:00:00 2001 From: Arnav Borborah Date: Thu, 15 Aug 2019 21:05:33 -0400 Subject: [PATCH] Fix typo in pop documentation --- src/flask/ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flask/ctx.py b/src/flask/ctx.py index 172f6a01..4e6b40b1 100644 --- a/src/flask/ctx.py +++ b/src/flask/ctx.py @@ -61,7 +61,7 @@ class _AppCtxGlobals(object): :param name: Name of attribute to pop. :param default: Value to return if the attribute is not present, - instead of raise a ``KeyError``. + instead of raising a ``KeyError``. .. versionadded:: 0.11 """