Unify the use of markup in docstrings, particulary relating to the use of backticks and asterisks. Also clean up any remaining minor inconsistencies or errors in the docstrings. Closes #334
22 lines
303 B
ReStructuredText
22 lines
303 B
ReStructuredText
.. _api:
|
|
|
|
API Class
|
|
=========
|
|
|
|
Falcon's API class is a WSGI "application" that you can host with any
|
|
standard-compliant WSGI server.
|
|
|
|
.. code:: python
|
|
|
|
import falcon
|
|
|
|
api = application = falcon.API()
|
|
|
|
.. autoclass:: falcon.API
|
|
:members:
|
|
|
|
.. autoclass:: falcon.RequestOptions
|
|
:members:
|
|
|
|
|