]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/glossary.rst: remove duplicates 48358/head
authorZac Dover <zac.dover@gmail.com>
Mon, 3 Oct 2022 12:51:35 +0000 (22:51 +1000)
committerZac Dover <zac.dover@gmail.com>
Tue, 4 Oct 2022 05:04:20 +0000 (15:04 +1000)
This commit removes similar but distinct entries for the following:
   * CephFS
   * Ceph Client

Removal of a glossary term that is referred to in the body of the
documentation suite requires the alteration of the text string
that refers to the glossary term. Alterations of this kind have
been made to doc/architecture.rst and doc/rados/api/index.rst.

Signed-off-by: Zac Dover <zac.dover@gmail.com>
(cherry picked from commit 0692b223540143cdb4a60b54595a7069284b5481)

doc/architecture.rst
doc/glossary.rst
doc/rados/api/index.rst

index 33558c0a877a5b6fac7779d06b71ce4fbfa97c6f..c7efe6d14c29dbd20df4e0e7f85ef88b5552a00c 100644 (file)
@@ -59,7 +59,7 @@ service interfaces built on top of ``librados``.
 Storing Data
 ------------
 
-The Ceph Storage Cluster receives data from :term:`Ceph Clients`--whether it
+The Ceph Storage Cluster receives data from :term:`Ceph Client`\s--whether it
 comes through a :term:`Ceph Block Device`, :term:`Ceph Object Storage`, the
 :term:`Ceph File System` or a custom implementation you create using
 ``librados``-- which is stored as RADOS objects. Each object is stored on an
@@ -80,7 +80,7 @@ stored in a monolithic database-like fashion.
 Ceph OSD Daemons store data as objects in a flat namespace (e.g., no
 hierarchy of directories). An object has an identifier, binary data, and
 metadata consisting of a set of name/value pairs. The semantics are completely
-up to :term:`Ceph Clients`. For example, CephFS uses metadata to store file
+up to :term:`Ceph Client`\s. For example, CephFS uses metadata to store file
 attributes such as the file owner, created date, last modified date, and so
 forth.
 
index 7a96a45f967ccc5c76fab81a3332657e262e7a19..5519b3a2c871a7cf56a27084deddb4550242b4d5 100644 (file)
@@ -37,12 +37,12 @@ reflect either technical terms or legacy ways of referring to Ceph systems.
                 The collection of libraries that can be used to interact with
                 components of the Ceph System.
 
-       Ceph Clients
        Ceph Cluster Map
        Ceph Dashboard
        Ceph File System
+                See :term:`CephFS`
+
        CephFS
-       Ceph FS
                 The POSIX filesystem components of Ceph. Refer :ref:`CephFS
                 Architecture <arch-cephfs>` and :ref:`ceph-file-system` for
                 more details.
index 5da6be5ebfff49e5fb993333780d1b510c31b3ed..63bc7222d807269d1dbfc5948d01fde3147ba310 100644 (file)
@@ -4,7 +4,7 @@
 
 The :term:`Ceph Storage Cluster` has a messaging layer protocol that enables
 clients to interact with a :term:`Ceph Monitor` and a :term:`Ceph OSD Daemon`.
-``librados`` provides this functionality to :term:`Ceph Clients` in the form of
+``librados`` provides this functionality to :term:`Ceph Client`\s in the form of
 a library.  All Ceph Clients either use ``librados`` or the same functionality
 encapsulated in ``librados`` to interact with the object store.  For example,
 ``librbd`` and ``libcephfs`` leverage this functionality. You may use