From dd59d7241d0ebc713d51ab939f53ebd0df8b2dac Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 4 Jul 2010 11:26:34 +0200 Subject: [PATCH] Ported a typo fix from master --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 9fd7512b..273e9b34 100644 --- a/flask/app.py +++ b/flask/app.py @@ -550,7 +550,7 @@ class Flask(_PackageBoundObject): :param methods: a list of methods this rule should be limited to (``GET``, ``POST`` etc.). By default a rule just listens for ``GET`` (and implicitly ``HEAD``). - :param subdomain: specifies the rule for the subdoain in case + :param subdomain: specifies the rule for the subdomain in case subdomain matching is in use. :param strict_slashes: can be used to disable the strict slashes setting for this rule. See above.