]> git.lizzy.rs Git - lua_async.git/commitdiff
'Intervals' instead of 'Interval'
authorElias Fleckenstein <eliasfleckenstein@web.de>
Fri, 6 Aug 2021 18:37:07 +0000 (20:37 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Fri, 6 Aug 2021 18:37:07 +0000 (20:37 +0200)
README.md

index 75a7d28168d2e169af4647104d4cf1b9fabdc0b4..ac1931a449223b2bb34b10e00cf3927e75fa1ef5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -37,7 +37,7 @@ Registers a new timeout that will execute after `ms` milliseconds. If `ms` is no
 #### `clearTimeout(id)`
 This function takes an ID of an existing timeout that has not executed yet and cancels it, meaning it will not execute. If `id` is not numeric, not a valid timeout id or the associated timeout has expired or already been cleared, `clearTimeout` does nothing. `id` may however not be `nil`. `clearTimeout` may be called on any timeout at any time, if timeouts are currently processing the cleared timeout is removed from the list of timeouts to process.
 
-### Interval
+### Intervals
 
 Intervals are processed every step after timeouts have been processed. An interval is called every time a certain time elapsed, or every step.