diff options
author | David Stansby <dstansby@gmail.com> | 2022-08-04 16:48:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 16:48:24 +0100 |
commit | 26ca57893d5e787b948b365ebeb3a444a3763302 (patch) | |
tree | 17b29324c874354c54f96b4a6d15c3ee737765a2 /doc/development/tutorials | |
parent | b2fe07e1a1c608acb18233222581897f78a00eaa (diff) | |
download | sphinx-git-26ca57893d5e787b948b365ebeb3a444a3763302.tar.gz |
Fix small typo in extension hello world tutorial
Diffstat (limited to 'doc/development/tutorials')
-rw-r--r-- | doc/development/tutorials/helloworld.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst index 2273330f1..3e6e78eb9 100644 --- a/doc/development/tutorials/helloworld.rst +++ b/doc/development/tutorials/helloworld.rst @@ -105,7 +105,7 @@ Sphinx. :linenos: :lines: 12- -The simplest thing you can do it call the :meth:`~Sphinx.add_directive` method, +The simplest thing you can do is call the :meth:`~Sphinx.add_directive` method, which is what we've done here. For this particular call, the first argument is the name of the directive itself as used in a reST file. In this case, we would use ``helloworld``. For example: |