]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: trivial: fix missing newlines in rbd man page 3816/head
authorFlorian Haas <florian@hastexo.com>
Fri, 27 Feb 2015 10:21:03 +0000 (11:21 +0100)
committerFlorian Haas <florian@hastexo.com>
Fri, 27 Feb 2015 10:21:03 +0000 (11:21 +0100)
As it were, the order, stripe_unit and stripe_count options were
followed by descriptions rendered in the same monospace font as the
options themselves. Insert newlines so they are rendered as regular
text, as was the original intention.

Signed-off-by: Florian Haas <florian@hastexo.com>
doc/man/8/rbd.rst

index 7c85f9d4f07ab3911ce1e5d9bf99c96f8fad5d95..a5028eef17d870eaa90841c7be2f012353c85820 100644 (file)
@@ -322,14 +322,17 @@ bottleneck when individual images get large or busy.
 The striping is controlled by three parameters:
 
 .. option:: order
+
   The size of objects we stripe over is a power of two, specifically 2^[*order*] bytes.  The default
   is 22, or 4 MB.
 
 .. option:: stripe_unit
+
   Each [*stripe_unit*] contiguous bytes are stored adjacently in the same object, before we move on
   to the next object.
 
 .. option:: stripe_count
+
   After we write [*stripe_unit*] bytes to [*stripe_count*] objects, we loop back to the initial object
   and write another stripe, until the object reaches its maximum size (as specified by [*order*].  At that
   point, we move on to the next [*stripe_count*] objects.