From 95154786ace0df756cdefe16dd555ff17fd45568 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Wed, 23 Sep 2015 16:02:11 -0700 Subject: [PATCH] Update docs --- docs/conf.py | 2 +- docs/design.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f787c83..d1b8a23 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ extensions = ['autoapi.extension'] autoapi_type = 'python' -autoapi_dir = '../autoapi' +autoapi_dirs = ['../autoapi'] autoapi_file_pattern = '*.py' autoapi_options = ['members', 'undoc-members', 'private-members'] diff --git a/docs/design.rst b/docs/design.rst index 3675ea8..6723d3f 100644 --- a/docs/design.rst +++ b/docs/design.rst @@ -124,7 +124,7 @@ There will be Sphinx configuration for how things get built: .. code-block:: rst autoapi_root = 'api' # Where HTML is generated - autoapi_dir = 'yaml' # Directory of YAML sources + autoapi_dirs = ['yaml'] # Directory of YAML sources We will then loop over all YAML files in the ``autoapi_dir`` and parse them. They will then be output into ``autoapi_root`` inside the documentation.