Removed words that minimize involved difficulty, closes #1089

This commit is contained in:
Simon Willison 2020-11-12 12:07:19 -08:00
commit 5eb8e9bf25
10 changed files with 19 additions and 19 deletions

View file

@ -119,7 +119,7 @@ For example:
content_type="application/xml; charset=utf-8"
)
The easiest way to create responses is using the ``Response.text(...)``, ``Response.html(...)``, ``Response.json(...)`` or ``Response.redirect(...)`` helper methods:
The quickest way to create responses is using the ``Response.text(...)``, ``Response.html(...)``, ``Response.json(...)`` or ``Response.redirect(...)`` helper methods:
.. code-block:: python