From 6295396c644c6771b50ee991a5e6c7051136ac26 Mon Sep 17 00:00:00 2001 From: Celeste Liu Date: Wed, 14 Sep 2022 17:11:40 +0800 Subject: doc: fix description of QFileDevice::Permission::*Other The *Other was documented as "anyone" where it should be "others" because these permission are only applied to users except owner and users in group in UNIX like system. Change-Id: I416eb53a5b6e7ccba238a70a7a0cedd129fc83a4 Reviewed-by: Thiago Macieira Reviewed-by: Leena Miettinen --- src/corelib/io/qfiledevice.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/corelib/io/qfiledevice.cpp') diff --git a/src/corelib/io/qfiledevice.cpp b/src/corelib/io/qfiledevice.cpp index 4e508e6597..c83ec227cc 100644 --- a/src/corelib/io/qfiledevice.cpp +++ b/src/corelib/io/qfiledevice.cpp @@ -89,9 +89,9 @@ void QFileDevicePrivate::setError(QFileDevice::FileError err, int errNum) \value ReadGroup The file is readable by the group. \value WriteGroup The file is writable by the group. \value ExeGroup The file is executable by the group. - \value ReadOther The file is readable by anyone. - \value WriteOther The file is writable by anyone. - \value ExeOther The file is executable by anyone. + \value ReadOther The file is readable by others. + \value WriteOther The file is writable by others. + \value ExeOther The file is executable by others. \warning Because of differences in the platforms supported by Qt, the semantics of ReadUser, WriteUser and ExeUser are -- cgit v1.2.3