Skip to content

Commit

Permalink
fix typos in SuFile.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored Mar 21, 2024
1 parent 2d74863 commit d88e277
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/ModConf/functions/SuFile.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
```

0 comments on commit d88e277

Please sign in to comment.