Fixed leftover decorator references

This commit is contained in:
Joel Collins 2020-06-29 17:49:01 +01:00
parent 9ae2ae06d0
commit 3100530edb
3 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ For example, if you are creating an API route, in which you expect parameters ``
age = fields.Integer(required=True)
job = fields.String(required=False, missing="Unknown")
To inform your POST method to expect these arguments, use the ``@use_args`` decorator:
To inform your POST method to expect these arguments, use the ``args`` class attribute:
.. code-block:: python