[DOC] Fix invalid code to make it syntax highlighted

This commit is contained in:
Marcus Stollsteimer 2019-12-23 22:41:58 +01:00
Родитель a7b5018495
Коммит df6f5c44af
1 изменённых файлов: 1 добавлений и 1 удалений

2
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