From 1998969a4cc052d63b27fc566deae2922dcb4821 Mon Sep 17 00:00:00 2001 From: Zac Dover Date: Sat, 19 Nov 2022 14:57:24 +1000 Subject: [PATCH] src/pybind/cephfs: fix grammar Fix the grammar in the explanation of the lstat() API call. Signed-off-by: Zac Dover (cherry picked from commit 8ef1379c1c8f2d1f52cb26f2de18d419e514f867) --- src/pybind/cephfs/cephfs.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pybind/cephfs/cephfs.pyx b/src/pybind/cephfs/cephfs.pyx index f4fe8d8d19c02..9a37448e1c25f 100644 --- a/src/pybind/cephfs/cephfs.pyx +++ b/src/pybind/cephfs/cephfs.pyx @@ -1901,9 +1901,9 @@ cdef class LibCephFS(object): def lstat(self, path): """ - Get a file's extended statistics and attributes. When file's a - symbolic link, return the information of the link itself rather - than that of the file it points too. + Get a file's extended statistics and attributes. If the file is a + symbolic link, return the information of the link itself rather than + the information of the file it points to. :param path: the file or directory to get the statistics of. """ -- 2.39.5