Skip to content

Commit 472fcf4

Browse files
committed
fixing some typos on flask pages
1 parent 21d7bbf commit 472fcf4

17 files changed

+33
-33
lines changed

content/pages/examples/flask/flask-cli-with-appcontext.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-cli-with-appcontext-examples
44
sortorder: 500021006
55
toc: False
66
sidebartitle: flask.cli with_appcontext
7-
meta: Python example code for the with_appcontext function from the flask.cli module of the Flask project.
7+
meta: Python example code for the with_appcontext callable from the flask.cli module of the Flask project.
88

99

10-
with_appcontext is a function within the flask.cli module of the Flask project.
10+
with_appcontext is a callable within the flask.cli module of the Flask project.
1111

1212

1313
## Example 1 from FlaskBB

content/pages/examples/flask/flask-ctx-after-this-request.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-ctx-after-this-request-examples
44
sortorder: 500021007
55
toc: False
66
sidebartitle: flask.ctx after_this_request
7-
meta: Python example code for the after_this_request function from the flask.ctx module of the Flask project.
7+
meta: Python example code for the after_this_request callable from the flask.ctx module of the Flask project.
88

99

10-
after_this_request is a function within the flask.ctx module of the Flask project.
10+
after_this_request is a callable within the flask.ctx module of the Flask project.
1111

1212

1313
## Example 1 from Flask-Security-Too

content/pages/examples/flask/flask-ctx-has-app-context.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-ctx-has-app-context-examples
44
sortorder: 500021008
55
toc: False
66
sidebartitle: flask.ctx has_app_context
7-
meta: Python example code for the has_app_context function from the flask.ctx module of the Flask project.
7+
meta: Python example code for the has_app_context callable from the flask.ctx module of the Flask project.
88

99

10-
has_app_context is a function within the flask.ctx module of the Flask project.
10+
has_app_context is a callable within the flask.ctx module of the Flask project.
1111

1212

1313
## Example 1 from flask-restx

content/pages/examples/flask/flask-ctx-has-request-context.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-ctx-has-request-context-examples
44
sortorder: 500021009
55
toc: False
66
sidebartitle: flask.ctx has_request_context
7-
meta: Python example code for the has_request_context function from the flask.ctx module of the Flask project.
7+
meta: Python example code for the has_request_context callable from the flask.ctx module of the Flask project.
88

99

10-
has_request_context is a function within the flask.ctx module of the Flask project.
10+
has_request_context is a callable within the flask.ctx module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-globals-current-app.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-globals-current-app-examples
44
sortorder: 500021010
55
toc: False
66
sidebartitle: flask.globals current_app
7-
meta: Python example code for the current_app function from the flask.globals module of the Flask project.
7+
meta: Python example code for the current_app callable from the flask.globals module of the Flask project.
88

99

10-
current_app is a function within the flask.globals module of the Flask project.
10+
current_app is a callable within the flask.globals module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-globals-g.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-globals-g-examples
44
sortorder: 500021011
55
toc: False
66
sidebartitle: flask.globals g
7-
meta: Python example code for the g function from the flask.globals module of the Flask project.
7+
meta: Python example code for the g callable from the flask.globals module of the Flask project.
88

99

10-
g is a function within the flask.globals module of the Flask project.
10+
g is a callable within the flask.globals module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-globals-request.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-globals-request-examples
44
sortorder: 500021012
55
toc: False
66
sidebartitle: flask.globals request
7-
meta: Python example code for the request function from the flask.globals module of the Flask project.
7+
meta: Python example code for the request callable from the flask.globals module of the Flask project.
88

99

10-
request is a function within the flask.globals module of the Flask project.
10+
request is a callable within the flask.globals module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-globals-session.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-globals-session-examples
44
sortorder: 500021013
55
toc: False
66
sidebartitle: flask.globals session
7-
meta: Python example code for the session function from the flask.globals module of the Flask project.
7+
meta: Python example code for the session callable from the flask.globals module of the Flask project.
88

99

10-
session is a function within the flask.globals module of the Flask project.
10+
session is a callable within the flask.globals module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-helpers-flash.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-helpers-flash-examples
44
sortorder: 500021014
55
toc: False
66
sidebartitle: flask.helpers flash
7-
meta: Python example code for the flash function from the flask.helpers module of the Flask project.
7+
meta: Python example code for the flash callable from the flask.helpers module of the Flask project.
88

99

10-
flash is a function within the flask.helpers module of the Flask project.
10+
flash is a callable within the flask.helpers module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

content/pages/examples/flask/flask-helpers-make-response.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ slug: flask-helpers-make-response-examples
44
sortorder: 500021015
55
toc: False
66
sidebartitle: flask.helpers make_response
7-
meta: Python example code for the make_response function from the flask.helpers module of the Flask project.
7+
meta: Python example code for the make_response callable from the flask.helpers module of the Flask project.
88

99

10-
make_response is a function within the flask.helpers module of the Flask project.
10+
make_response is a callable within the flask.helpers module of the Flask project.
1111

1212

1313
## Example 1 from Flask AppBuilder

0 commit comments

Comments
 (0)