summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-13 01:22:31 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-13 01:22:31 +0000
commit1e2ea43fe82e95355fdb1cb378df233c9f806bbc (patch)
tree16c5dae97b3c326ec32410e522b967d748968f5b
parent24a7a76c7eb55e7c36882348c39705fd52899474 (diff)
* object.c (nil_inspect): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--object.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a91a0a770d..886437d46e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Sep 13 10:20:45 2004 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * object.c (nil_inspect): fix typo.
+
Mon Sep 13 01:03:02 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tcltklib/tcltklib.c: improve control of preserv/release tcltkip
diff --git a/object.c b/object.c
index 2ccc8b9148..68f768c46f 100644
--- a/object.c
+++ b/object.c
@@ -834,7 +834,7 @@ nil_to_a(obj)
/*
* call-seq:
- * nil.to_s => "nil"
+ * nil.inspect => "nil"
*
* Always returns the string "nil".
*/