summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--vm.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a512ad30c..07499bdc0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 28 02:42:00 2013 Zachary Scott <zachary@zacharyscott.net>
+
+ * vm.c: Typo in overview for example of Thread#status returning false
+ Reported by Lee Jarvis
+
Wed Feb 27 22:54:27 2013 Tanaka Akira <akr@fsij.org>
* ext/socket/rubysocket.h (union_sockaddr): make it longer for SunOS
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.