File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -193,11 +193,10 @@ final ConfigSection root = inscript.getRoot();
193193```
194194
195195### Miscellaneous
196- > ![NOTE ]
197- > By default, Inscript does not run anything asynchronously for you.
196+ By default, Inscript does not run anything asynchronously for you.
198197
199198> ![CAUTION ]
200- > Any loading and saving operations from Inscript **should be run asynchronously**.
199+ > Any loading and saving operations from Inscript **should be run asynchronously**.
201200>
202201> Make sure to run the string based methods (not the disk ones) asynchronously as well.
203202> They are basically the same as the disk based ones without the file writing and reading.
@@ -207,4 +206,4 @@ final ConfigSection root = inscript.getRoot();
207206> CompletableFuture .runAsync(inscript::loadFromDisk).thenRun(() -> {
208207> // ...
209208> });
210- > ```
209+ > ```
You can’t perform that action at this time.
0 commit comments