Skip to content

Commit

Permalink
Merge pull request #26 from 5vl/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
stephendotgg authored Nov 5, 2023
2 parents 67b54b1 + 7c43a9f commit 36491ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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.
Make sure to use our `GSON` import rather than making your own/own builder, as the Gson instance has to declare the ExclusionStrategy.

0 comments on commit 36491ac

Please sign in to comment.