diff options
author | Daniel Hahler <git@thequod.de> | 2018-06-25 08:23:15 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2018-06-25 08:25:56 +0200 |
commit | 8f94429a211ae1217f64704dc31785feebea88f8 (patch) | |
tree | 1364e1def7d6e1bd0c056b8b9297f2a72b2b58fa /doc/extdev/parserapi.rst | |
parent | e1201f277902df12ff5fca1e2a63a73bbae58296 (diff) | |
download | sphinx-git-8f94429a211ae1217f64704dc31785feebea88f8.tar.gz |
doc: fix func/meth references to Sphinx
Diffstat (limited to 'doc/extdev/parserapi.rst')
-rw-r--r-- | doc/extdev/parserapi.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/extdev/parserapi.rst b/doc/extdev/parserapi.rst index e71661b2e..11a690387 100644 --- a/doc/extdev/parserapi.rst +++ b/doc/extdev/parserapi.rst @@ -12,7 +12,7 @@ __ http://docutils.sourceforge.net/docs/dev/hacking.html#parsing-the-document In Sphinx, the parser modules works as same as docutils. The parsers are registered to Sphinx by extensions using Application APIs; -:meth:`Sphinx.add_source_suffix()` and :meth:`Sphinx.add_source_parsers()`. +:meth:`.Sphinx.add_source_suffix()` and :meth:`.Sphinx.add_source_parsers()`. The *source suffix* is a mapping from file suffix to file type. For example, ``.rst`` file is mapped to ``'restructuredtext'`` type. Sphinx uses the |