sphinx-autodoc-example/docs/simple.rst
2020-07-20 22:10:33 -07:00

18 lines
384 B
ReStructuredText

More info
---------------------------------
Here's a second file which could provide some detail on a particular module,
class, or concept.
It can include specific function docs here:
.. autofunction:: math.log
And here's the docs for our second module. We'll include ``undoc-members`` this
time:
.. automodule:: simple
:members:
:undoc-members:
And that's all she wrote.