fix: Fix typo in add_directive docstring

This commit is contained in:
James McKinney 2021-06-05 12:38:00 -04:00 committed by GitHub
parent df71e62dd8
commit 654f11e90c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -655,7 +655,7 @@ class Sphinx:
... ...
def setup(app): def setup(app):
add_directive('my-directive', MyDirective) app.add_directive('my-directive', MyDirective)
For more details, see `the Docutils docs For more details, see `the Docutils docs
<https://docutils.sourceforge.io/docs/howto/rst-directives.html>`__ . <https://docutils.sourceforge.io/docs/howto/rst-directives.html>`__ .