diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-23 14:03:44 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-11-23 14:03:44 +0100 |
commit | 101449f304a5eb23a649e220e713309f07842429 (patch) | |
tree | a8ac84feb4f1cb8747bef5fe979312f35cc578d9 /docs/contributing | |
parent | f4c414ce4d899839adf28a8fba67c5ad7587e5ac (diff) | |
download | vyos-documentation-101449f304a5eb23a649e220e713309f07842429.tar.gz vyos-documentation-101449f304a5eb23a649e220e713309f07842429.zip |
documentation: fix generation error in "code-block" directive
docs/contributing/documentation.rst:115: ERROR: Error in "code-block" directive:
1 argument(s) required, 0 supplied.
.. code-block::
.. opcmd:: show protocols static arp
Display all known ARP table entries spanning accross all interfaces
There is a missing "sh" statement after "code-block::"
Diffstat (limited to 'docs/contributing')
-rw-r--r-- | docs/contributing/documentation.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/contributing/documentation.rst b/docs/contributing/documentation.rst index b5ced664..3f088455 100644 --- a/docs/contributing/documentation.rst +++ b/docs/contributing/documentation.rst @@ -112,14 +112,12 @@ Under the command a short exlaination should be provide. Example: -.. code-block:: +.. code-block:: sh .. opcmd:: show protocols static arp Display all known ARP table entries spanning accross all interfaces - - .. _Sphinx-doc: https://www.sphinx-doc.org .. _reStructuredText: http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html .. _Phabricator: https://phabricator.vyos.net |