From 8ef1379c1c8f2d1f52cb26f2de18d419e514f867 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 --- 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 022c70b660fca..251302fb262cc 100644 --- a/src/pybind/cephfs/cephfs.pyx +++ b/src/pybind/cephfs/cephfs.pyx @@ -1903,9 +1903,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