From d88e277f3e8e8da3e572427b8494f34c6a476407 Mon Sep 17 00:00:00 2001 From: Der_Googler <54764558+DerGoogler@users.noreply.github.com> Date: Thu, 21 Mar 2024 07:04:15 +0100 Subject: [PATCH] fix typos in SuFile.md --- docs/ModConf/functions/SuFile.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ModConf/functions/SuFile.md b/docs/ModConf/functions/SuFile.md index 39c5f3bd..0dcafaab 100644 --- a/docs/ModConf/functions/SuFile.md +++ b/docs/ModConf/functions/SuFile.md @@ -85,7 +85,7 @@ file.deleteRecursive(); // void This method can multiple things like creating files, folders and parent folders ```js -const hello = new SuFile.create("/sdcard/hello.txt"); +const hello = new SuFile("/sdcard/hello.txt"); // create a file (default) hello.create(); // hello.create(SuFile.NEW_FILE) @@ -100,6 +100,6 @@ hello.create(SuFile.NEW_FOLDERS); ## Access native methods ```js -const native = new SuFile.create("/sdcard/hello.txt"); -native.interface; +const native = new SuFile("/sdcard/hello.txt"); +native.interface ```