Fixed a typo in the code of the golang tutorial

Closes #207
This commit is contained in:
Ashley Whetter 2020-05-20 19:35:54 -07:00
parent da8a0d8609
commit efe815c1df
2 changed files with 3 additions and 1 deletions

View file

@ -33,6 +33,8 @@ Bug Fixes
Trivial/Internal Changes
^^^^^^^^^^^^^^^^^^^^^^^^
* black shows diffs by default
* `#207 <https://github.com/readthedocs/sphinx-autoapi/issues/207>`:
Fixed a typo in the code of the golang tutorial.
v1.3.0 (2020-04-05)
-------------------

View file

@ -119,7 +119,7 @@ we need to add it to the list of extensions in Sphinx's ``conf.py`` file
with the Go domain extension::
extensions = [
'sphinxcontrib_golangdomain',
'sphinxcontrib.golangdomain',
'autoapi.extension',
]