summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@apache.org>2013-11-25 08:14:42 +0400
committerAlexander Shorin <kxepal@apache.org>2013-11-25 08:14:42 +0400
commitd2a17f6307d03adbb398d85c97c856f7c5e82280 (patch)
treebf3360851e83b67765f291eb2c328b3b8ab6d19f
parentfb92263e8bdf68de3c04322a8d17d1d5986e78b0 (diff)
downloadcouchdb-d2a17f6307d03adbb398d85c97c856f7c5e82280.tar.gz
Docs: fix CouchDB.info file generation
It was broken due to long lines with { } chars in HTTP API index which was wrapped to fit 80 chars per line limit. Since { } chars have some special meaning for texinfo, they should be escaped with @ char, but due to wrapping this escaping becomes broken which leads to to syntax error.
-rw-r--r--share/doc/src/api/ddoc/render.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/doc/src/api/ddoc/render.rst b/share/doc/src/api/ddoc/render.rst
index 5f99decce..887cda965 100644
--- a/share/doc/src/api/ddoc/render.rst
+++ b/share/doc/src/api/ddoc/render.rst
@@ -20,7 +20,7 @@
:synopsis: Executes a show function against null document
.. http:post:: /{db}/_design/{ddoc}/_show/{func}
- :synopsis: Same as GET /{db}/_design/{ddoc}/_show/{func}
+ :synopsis: Same as GET method for the related endpoint
Applies :ref:`show function <showfun>` for `null` document.
@@ -79,7 +79,7 @@
.. http:get:: /{db}/_design/{ddoc}/_show/{func}/{docid}
:synopsis: Executes a show function against the specified document
.. http:post:: /{db}/_design/{ddoc}/_show/{func}/{docid}
- :synopsis: Same as GET /{db}/_design/{ddoc}/_show/{func}/{docid}
+ :synopsis: Same as GET method for the related endpoint
Applies :ref:`show function <showfun>` for the specified document.
@@ -139,7 +139,7 @@
.. http:get:: /{db}/_design/{ddoc}/_list/{func}/{view}
:synopsis: Executes a list function against the view from the same design document
.. http:post:: /{db}/_design/{ddoc}/_list/{func}/{view}
- :synopsis: Same as GET /{db}/_design/{ddoc}/_list/{func}/{view}
+ :synopsis: Same as GET method for the related endpoint
Applies :ref:`list function <listfun>` for the :ref:`view function <viewfun>`
from the same design document.
@@ -203,7 +203,7 @@
.. http:get:: /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
:synopsis: Executes a list function against the view from other design document
.. http:post:: /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
- :synopsis: Same as GET /{db}/_design/{ddoc}/_list/{func}/{other-ddoc}/{view}
+ :synopsis: Same as GET method for the related endpoint
Applies :ref:`list function <listfun>` for the :ref:`view function <viewfun>`
from the other design document.