Skip to content

Commit

Permalink
small documentation improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Feb 19, 2016
1 parent 83e4dad commit a769586
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down Expand Up @@ -113,7 +114,7 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
machine package
===============
Usage
=====

.. automodule:: machine.machine
:members:
Expand Down
2 changes: 1 addition & 1 deletion machine/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def active(self):
Print which machine is active
Returns:
List[str}: a list of machines that are active
List[str]: a list of machines that are active
"""
cmd = ["active"]
stdout, stderr, error_code = self._run(cmd, raise_error=False)
Expand Down

0 comments on commit a769586

Please sign in to comment.