From 7c43a9f81c4dd78d31d2735bd39e664add4d7e46 Mon Sep 17 00:00:00 2001 From: 5vl Date: Sun, 5 Nov 2023 11:12:11 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc23201..d1ec0a5 100644 --- a/README.md +++ b/README.md @@ -142,11 +142,11 @@ delay(10) { println("I am a sync BukkitRunnable delayed by 10 ticks") } -// ASYNC delay(1, TimeUnit.SECONDS) { println("I am a sync BukkitRunnable delayed by 1 second") } +// ASYNC delay(10, true) { println("I am an async BukkitRunnable delayed by 10 ticks") } @@ -181,7 +181,7 @@ repeat(10, true) { } repeat(10, TimeUnit.SECONDS, true) { - println("I am an asyncBukkitRunnable running every 10 seconds") + println("I am an async BukkitRunnable running every 10 seconds") } repeat(5, 10, true) { @@ -273,4 +273,4 @@ We're aiming to provide some standard GSON Type Adapters for ease of use. Curren We have a useful exclusion strategy, allowing you to exclude marked fields of a class from being in serialized JSON. All you need to do is annotate the class field with `@Exclude`! -Make sure to use our `GSON` import rather than making your own/own builder, as the Gson instance has to declare the ExclusionStrategy. \ No newline at end of file +Make sure to use our `GSON` import rather than making your own/own builder, as the Gson instance has to declare the ExclusionStrategy.