diff --git a/Makefile b/Makefile
index ceeba2b4ef..080c53f170 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ install: $(PYTHON_VENV)
touch $@
$(SPHINXBUILD): .venv/requirements-timestamp
- $(VENV_BIN)pip$(PYTHON_BIN_POSTFIX) install "Sphinx<1.8" sphinxcontrib-napoleon sphinx_rtd_theme
+ $(VENV_BIN)pip$(PYTHON_BIN_POSTFIX) install "Sphinx<1.8" sphinx_rtd_theme
.PHONY: doc
doc: $(SPHINXBUILD)
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 36ef23a03b..8b7d4b84d9 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -44,7 +44,7 @@
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.autodoc',
- 'sphinxcontrib.napoleon',
+ 'sphinx.ext.napoleon',
]
with open('core/readers.rst', 'w') as readers:
diff --git a/doc/source/contrib/contributing.rst b/doc/source/contrib/contributing.rst
index f79f6e566a..8613235f93 100644
--- a/doc/source/contrib/contributing.rst
+++ b/doc/source/contrib/contributing.rst
@@ -29,7 +29,7 @@ Code Documentation
Some parts of the documentation are built directly from the code.
The documentation is built using `Sphinx `__, so the code documentation uses
`Google style docstrings
-`__.
+`__.
Contributing to the Code
========================