From 7df3524bb9f2683555186d0890c24576c1505766 Mon Sep 17 00:00:00 2001 From: Grey Li Date: Tue, 24 Apr 2018 08:09:08 +0800 Subject: [PATCH] Fix typo in docs --- docs/blueprints.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blueprints.rst b/docs/blueprints.rst index 96bfcad10f..1b6de08c8a 100644 --- a/docs/blueprints.rst +++ b/docs/blueprints.rst @@ -158,7 +158,7 @@ It is either an absolute path or relative to the blueprint's location:: admin = Blueprint('admin', __name__, static_folder='static') By default the rightmost part of the path is where it is exposed on the -web. This can be changed with the ``static_url`` argument. Because the +web. This can be changed with the ``static_url_path`` argument. Because the folder is called ``static`` here it will be available at the ``url_prefix`` of the blueprint + ``/static``. If the blueprint has the prefix ``/admin``, the static URL will be ``/admin/static``.