Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/versioning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Python versions
---------------

Quart will support Python versions until they reach end of life. This
may, is rare circumstances be achieved by bug fixes to a specific
release branch i.e. no new features. This happended with Python 3.6
may, in rare circumstances be achieved by bug fixes to a specific
release branch i.e. no new features. This happened with Python 3.6
and the Quart 0.5.X releases.
2 changes: 1 addition & 1 deletion docs/tutorials/blog_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ be added to *src/blog/templates/create.html*:
</form>

The styling ensures that the elements of the form are arranged
verically with a gap and sensible maximum width.
vertically with a gap and sensible maximum width.

To allow a visitor to create a blog post we need to accept the POST
request generated by this form in the browser. To do so the following
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using pip or your favorite python package manager:
Dependencies
------------

Quart dependends on the following packages, which will automatically
Quart depends on the following packages, which will automatically
be installed with Quart:

- aiofiles, to load files in an asyncio compatible manner,
Expand Down
4 changes: 2 additions & 2 deletions src/quart/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ class Quart(App):
PERMANENT_SESSION_LIFETIME value. Specifies how long the session
data should survive.
request_class: The class to use for requests.
response_class: The class to user for responses.
secret_key: Warpper around configuration SECRET_KEY value. The app
response_class: The class to use for responses.
secret_key: Wrapper around configuration SECRET_KEY value. The app
secret for signing sessions.
session_interface: The class to use as the session interface.
shutdown_event: This event is set when the app starts to
Expand Down
Loading