diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-11-29 14:36:24 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-11-29 14:36:24 +0100 |
commit | 23515b4ef7580af8b9d3b964a558ab2007cacda5 (patch) | |
tree | 9a838b877f3c772d08325637d9400a77da8cd5cc /runtime/doc/version8.txt | |
parent | 287153c5d481a09ffe98a95ad78390ff580bb557 (diff) | |
download | vim-git-23515b4ef7580af8b9d3b964a558ab2007cacda5.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/version8.txt')
-rw-r--r-- | runtime/doc/version8.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt index 951a3070f..f7dc1fc07 100644 --- a/runtime/doc/version8.txt +++ b/runtime/doc/version8.txt @@ -76,7 +76,7 @@ Timers ~ Also asynchronous are timers. They can fire once or repeatedly and invoke a function to do any work. For example: > let tempTimer = timer_start(4000, 'CheckTemp') -This will call the CheckTemp() function four seconds (4000 milli seconds) +This will call the CheckTemp() function four seconds (4000 milliseconds) later. See |timer_start()|. |