Fix grammar and article usage in documentation

- Fix verb agreement in lifecycle.rst: 'creates and send' -> 'creates and sends'
- Fix article usage: 'a HTTP' -> 'an HTTP' in quickstart.rst and errorhandling.rst
This commit is contained in:
alaa 2025-08-01 22:36:19 +01:00
parent 85c5d93cbd
commit 0e8dc9f269
3 changed files with 3 additions and 3 deletions

View file

@ -261,7 +261,7 @@ Custom Error Pages
Sometimes when building a Flask application, you might want to raise a
:exc:`~werkzeug.exceptions.HTTPException` to signal to the user that
something is wrong with the request. Fortunately, Flask comes with a handy
:func:`~flask.abort` function that aborts a request with a HTTP error from
:func:`~flask.abort` function that aborts a request with an HTTP error from
werkzeug as desired. It will also provide a plain black and white error page
for you with a basic description, but nothing fancy.