1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[DOC] Fix invalid code to make it syntax highlighted

This commit is contained in:
Marcus Stollsteimer 2019-12-23 22:41:58 +01:00
parent a7b5018495
commit df6f5c44af

2
vm.c
View file

@ -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