aboutsummaryrefslogtreecommitdiffstats
path: root/vm.c
diff options
context:
space:
mode:
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 999c29310f..4587d60442 100644
--- a/vm.c
+++ b/vm.c
@@ -2306,7 +2306,7 @@ Init_VM(void)
* thr = Thread.new { sleep }
* thr.status # => "sleep"
* thr.exit
- * thr.status # => "false"
+ * thr.status # => false
*
* You can also use #alive? to tell if the thread is running or sleeping,
* and #stop? if the thread is dead or sleeping.