Change brackets to fix referencing.
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/cb42adcf
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/cb42adcf
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/cb42adcf
Branch: refs/heads/1781-reorganize-and-improve-docs
Commit: cb42adcf003d0316efe0c3765a296be7f2be959a
Parents: 0dd43c7
Author: Alexander Shorin <kxepal@apache.org>
Authored: Sat Aug 10 17:24:07 2013 +0400
Committer: Alexander Shorin <kxepal@apache.org>
Committed: Wed Aug 21 20:27:19 2013 +0400
----------------------------------------------------------------------
share/doc/src/api/server/configuration.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/couchdb/blob/cb42adcf/share/doc/src/api/server/configuration.rst
----------------------------------------------------------------------
diff --git a/share/doc/src/api/server/configuration.rst b/share/doc/src/api/server/configuration.rst
index eef95fd..ddfe95d 100644
--- a/share/doc/src/api/server/configuration.rst
+++ b/share/doc/src/api/server/configuration.rst
@@ -173,7 +173,7 @@ A list of the available methods and URL paths are provided below:
``/_config/section``
====================
-.. http:get:: /_config/<section>
+.. http:get:: /_config/{section}
Gets the configuration structure for a single section.
@@ -217,7 +217,7 @@ A list of the available methods and URL paths are provided below:
``/_config/section/key``
========================
-.. http:get:: /_config/<section>/<key>
+.. http:get:: /_config/{section}/{key}
Gets a single configuration value from within a specific configuration
section.
@@ -253,7 +253,7 @@ A list of the available methods and URL paths are provided below:
environments may not parse simple strings or numeric values as valid JSON.
-.. http:put:: /_config/<section>/<key>
+.. http:put:: /_config/{section}/{key}
Updates a configuration value. The new value should be supplied in the
request body in the corresponding JSON format. If you are setting a string
@@ -292,7 +292,7 @@ A list of the available methods and URL paths are provided below:
"debug"
-.. http:delete:: /_config/<section>/<key>
+.. http:delete:: /_config/{section}/{key}
Deletes a configuration value. The returned JSON will be the value of
the configuration parameter before it was deleted.
|