Skip to content

Commit

Permalink
Fix headlines in quickstart.rst (pallets#2944)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Sep 2, 2024
2 parents 29085a9 + 59abac8 commit 5add63c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ understanding of :pep:`3333` (WSGI) and :rfc:`2616` (HTTP).


WSGI Environment
================
----------------

The WSGI environment contains all the information the user request transmits
to the application. It is passed to the WSGI application but you can also
Expand All @@ -33,7 +33,7 @@ access the form data besides parsing that data by hand.


Enter Request
=============
-------------

For access to the request data the :class:`Request` object is much more fun.
It wraps the `environ` and provides a read-only access to the data from
Expand Down Expand Up @@ -112,7 +112,7 @@ The keys for the headers are of course case insensitive.


Header Parsing
==============
--------------

There is more. Werkzeug provides convenient access to often used HTTP headers
and other request data.
Expand Down Expand Up @@ -183,7 +183,7 @@ True


Responses
=========
---------

Response objects are the opposite of request objects. They are used to send
data back to the client. In reality, response objects are nothing more than
Expand Down

0 comments on commit 5add63c

Please sign in to comment.