From 8fb769f03aae6d4c570a24ba3c3b8791dcdda60c Mon Sep 17 00:00:00 2001 From: Ankit Mohanty Date: Sat, 21 Mar 2026 02:28:26 +0530 Subject: [PATCH] docs: fix otherAll to othersAll in setPermissions example --- docs/api/filesystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/filesystem.md b/docs/api/filesystem.md index 9c9378b2..e8c93ebd 100644 --- a/docs/api/filesystem.md +++ b/docs/api/filesystem.md @@ -424,7 +424,7 @@ Sets file permissions for a given path. Throws `NE_FS_UNLSTPR` if the framework ```js await Neutralino.filesystem.setPermissions(NL_PATH + '/my-directory-1', {ownerRead: true, groupRead: true}); await Neutralino.filesystem.setPermissions(NL_PATH + '/my-directory-2', {all: true}); -await Neutralino.filesystem.setPermissions(NL_PATH + '/my-directory-3', {otherAll: true}, 'REMOVE'); +await Neutralino.filesystem.setPermissions(NL_PATH + '/my-directory-3', {othersAll: true}, 'REMOVE'); ``` ## filesystem.getPermissions(path)