summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorMarcus Stollsteimer <sto.mar@web.de>2019-12-23 22:41:58 +0100
committerMarcus Stollsteimer <sto.mar@web.de>2019-12-23 22:41:58 +0100
commitdf6f5c44af1f261fa940ec3954468be8b820450e (patch)
treebd41dfc5afbc7ae2b0d67e4b6a230383ef15df72 /vm.c
parenta7b5018495c4a6b82d779958b086647226ce61e7 (diff)
[DOC] Fix invalid code to make it syntax highlighted
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 4645c3577f..bb3ffae078 100644
--- a/vm.c
+++ b/vm.c
@@ -3057,7 +3057,7 @@ Init_VM(void)
*
* The class method ::kill, is meant to exit a given thread:
*
- * thr = Thread.new { ... }
+ * thr = Thread.new { sleep }
* Thread.kill(thr) # sends exit() to thr
*
* Alternatively, you can use the instance method #exit, or any of its