From ba914c045500070c0ea6af2764374e422a9ae150 Mon Sep 17 00:00:00 2001 From: bluefireoly Date: Sat, 26 Sep 2020 19:30:18 +0200 Subject: [PATCH] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4a20374b..4b68de7a 100644 --- a/readme.md +++ b/readme.md @@ -57,7 +57,7 @@ NOTE: The counters are nullable, because howOften is (when null) infinite. With the `kSpigot.task() { }` method you have the possibility to set the parameter `safe = true`. When doing this, the defined `endCallback` will be executed under any circumstances (except a major server crash). If you define `endCallback`, but do not set `safe = true` the `endCallback` will only be executed when the task ends, because the limit of `howOften` was reached. -#### Chainable runnabless +#### Chainable runnables This makes it possible to do resource intensive tasks asynchronous and then doing something with the result synchronous (e.g. because Spigot forces you) in a simple way.