Skip to content

Commit 88a65bb

Browse files
authored
Docs typo/markup fixes (#5829)
1 parent adf3636 commit 88a65bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/appcontext.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ real object, rather than the proxy. Use the
141141
my_signal.send(app)
142142
143143
144-
Lifcycle of the Context
145-
-----------------------
144+
Lifecycle of the Context
145+
------------------------
146146

147147
Flask dispatches a request in multiple stages which can affect the request,
148148
response, and how errors are handled. See :doc:`/lifecycle` for a list of all

docs/design.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ etc. Context locals are specific to the worker handling the activity, such as a
178178
thread, process, coroutine, or greenlet.
179179

180180
The context and proxies help solve two development issues: circular imports, and
181-
passing around global data. :data:`.current_app: can be used to access the
181+
passing around global data. :data:`.current_app` can be used to access the
182182
application object without needing to import the app object directly, avoiding
183-
circular import issues. :data:`.request`, :data:`.session`, and :data`.g` can be
184-
imported to access the current data for the request, rather than needing to
183+
circular import issues. :data:`.request`, :data:`.session`, and :data:`.g` can
184+
be imported to access the current data for the request, rather than needing to
185185
pass them as arguments through every single function in your project.
186186

187187

0 commit comments

Comments
 (0)