diff options
author | ArtFlag <arthur.flageul@gmail.com> | 2018-12-22 11:13:35 +0100 |
---|---|---|
committer | ArtFlag <arthur.flageul@gmail.com> | 2018-12-22 11:13:35 +0100 |
commit | a85f8e2305ce9a0b122d9725586fa0433655a222 (patch) | |
tree | 1f75d934058d13f02cfb216b414ff0109f7a1029 /doc/development/tutorials/helloworld.rst | |
parent | 990b02b5fbfc588d0623d0e8551a4b4c6ce3f0ce (diff) | |
download | sphinx-git-a85f8e2305ce9a0b122d9725586fa0433655a222.tar.gz |
Minor changes in helloworld
Diffstat (limited to 'doc/development/tutorials/helloworld.rst')
-rw-r--r-- | doc/development/tutorials/helloworld.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst index 3769edcdb..66da2244c 100644 --- a/doc/development/tutorials/helloworld.rst +++ b/doc/development/tutorials/helloworld.rst @@ -62,7 +62,7 @@ in all directives: .. rubric:: Directive declaration Our new directive is declared in the ``HelloWorld`` class, it extends -docutils_' code:`Directive` class. All extensions that create directives +docutils_' ``Directive`` class. All extensions that create directives should extend this class. .. rubric:: ``run`` method @@ -83,7 +83,7 @@ available: text, paragraph, reference, table, etc. .. seealso:: - `docutils nodes`_ + `The docutils documentation on nodes <docutils nodes>`_ The ``nodes.paragraph`` class creates a new paragraph node. A paragraph node typically contains some text that we can set during instantiation using |