diff options
author | Ville Ojamo <14869000+bluikko@users.noreply.github.com> | 2022-05-02 05:15:17 +0200 |
---|---|---|
committer | Ville Ojamo <14869000+bluikko@users.noreply.github.com> | 2022-05-02 06:52:14 +0200 |
commit | 4a0e856acd7490458c61f93d57a9cb8905b4c294 (patch) | |
tree | 2eb1c3f6098ea1a025a4834e9b7f57b2350a0939 /src/pybind/rados/rados.pyx | |
parent | doc/rados/api: fix invalid RST syntax and don't sudo for vim (diff) | |
download | ceph-4a0e856acd7490458c61f93d57a9cb8905b4c294.tar.xz ceph-4a0e856acd7490458c61f93d57a9cb8905b4c294.zip |
pybind/rados: fix typo in get_stats documentation
Ioctx.get_stats() had a typo in return value documentation
block so add the "c" in "objects".
Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
Diffstat (limited to 'src/pybind/rados/rados.pyx')
-rw-r--r-- | src/pybind/rados/rados.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pybind/rados/rados.pyx b/src/pybind/rados/rados.pyx index abec5119d45..b8ae8165c6c 100644 --- a/src/pybind/rados/rados.pyx +++ b/src/pybind/rados/rados.pyx @@ -2994,7 +2994,7 @@ returned %d, but should return zero on success." % (self.name, ret)) - ``num_object_copies`` (int) - number of object copies - - ``num_objects_missing_on_primary`` (int) - number of objets + - ``num_objects_missing_on_primary`` (int) - number of objects missing on primary - ``num_objects_unfound`` (int) - number of unfound objects |