diff options
author | David Robillard <d@drobilla.net> | 2021-01-07 17:56:08 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-07 17:56:08 +0100 |
commit | e9dad4375bcd65cdcc4a61a48ddbc6155e394a46 (patch) | |
tree | ca324c1ccd4898d17db5e480da09bf48895a30c9 /doc/c | |
parent | 39deed9287e4787682a027d3f011019c409841f9 (diff) | |
download | serd-e9dad4375bcd65cdcc4a61a48ddbc6155e394a46.tar.gz serd-e9dad4375bcd65cdcc4a61a48ddbc6155e394a46.tar.bz2 serd-e9dad4375bcd65cdcc4a61a48ddbc6155e394a46.zip |
Use globally unique Doxygen group names
This is necessary to avoid clashes when building unified documentation as a
subproject.
Diffstat (limited to 'doc/c')
-rw-r--r-- | doc/c/overview.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/c/overview.rst b/doc/c/overview.rst index 95862368..2b204155 100644 --- a/doc/c/overview.rst +++ b/doc/c/overview.rst @@ -5,14 +5,14 @@ Overview .. default-domain:: c .. highlight:: c -The API revolves around two main types: the :doc:`api/reader`, +The API revolves around two main types: the :doc:`api/serd_reader`, which reads text and fires callbacks, -and the :doc:`api/writer`, +and the :doc:`api/serd_writer`, which writes text when driven by corresponding functions. Both work in a streaming fashion but still support pretty-printing, so the pair can be used to pretty-print, translate, or otherwise process arbitrarily large documents very quickly. -The context of a stream is tracked by the :doc:`api/env`, +The context of a stream is tracked by the :doc:`api/serd_env`, which stores the current base URI and set of namespace prefixes. The complete API is declared in ``serd.h``: |