Simple edits

This commit is contained in:
mike cullerton 2021-05-25 10:34:59 -04:00
parent 2f46c5374a
commit d2f9013491
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ It allows us to manage error reporting in one place, and format errors for the f
.. toctree::
:maxdepth: 2
01_api_error.rst
01_api_error
02_helper_methods
03_example_usage
04_api_error_schema

View File

@ -40,14 +40,14 @@ The other arguments allow us to pass along additional information depending on t
Usage
-----
To use ApiError, you would first import it
To use ApiError, you first need to import it.
.. code-block::
from crc.api.common import ApiError
Then use it in a code block like a try/except,
Then you can use it in a code block like a try/except,
.. code-block::