This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git


The following commit(s) were added to refs/heads/master by this push:
     new 57a6bcd  Fix `make check` failure in api/database/common.rst
57a6bcd is described below

commit 57a6bcd85a5deccb3215cb8c0665bdf8f378be2f
Author: Nick Vatamaniuc <vatam...@apache.org>
AuthorDate: Wed Oct 3 10:36:54 2018 -0400

    Fix `make check` failure in api/database/common.rst
    
    ```
    line 158 : too long (173 > 90) line
        :query integer n: Replicas. The number of copies of the database in the 
cluster. The default is 3, unless overridden in the :config:option:`cluster 
config <cluster/n>` .
    ```
    
    This passes make check locally on MacOS but fails in Travis somehow.
    
    Even stranger, it passed in Travis before when it was PR
---
 src/api/database/common.rst | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/api/database/common.rst b/src/api/database/common.rst
index 7667a65..8a8db3f 100644
--- a/src/api/database/common.rst
+++ b/src/api/database/common.rst
@@ -154,7 +154,9 @@
     :param db: Database name
     :query integer q: Shards, aka the number of range partitions. Default is
       8, unless overridden in the :config:option:`cluster config <cluster/q>`.
-    :query integer n: Replicas. The number of copies of the database in the 
cluster. The default is 3, unless overridden in the :config:option:`cluster 
config <cluster/n>` .
+    :query integer n: Replicas. The number of copies of the database in the
+      cluster. The default is 3, unless overridden in the
+      :config:option:`cluster config <cluster/n>` .
     :<header Accept: - :mimetype:`application/json`
                      - :mimetype:`text/plain`
     :>header Content-Type: - :mimetype:`application/json`

Reply via email to