aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/iconv/iconv.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d40c5427ae..9970b5dea2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Fri Nov 16 17:03:34 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Fri Nov 16 17:41:34 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/iconv/iconv.c (Document-class): moved the simplest example to
the top.
@@ -6,6 +6,9 @@ Fri Nov 16 17:03:34 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/iconv/iconv.c (iconv_s_iconv): Document-method: needs class
prefix for class method. [ruby-core:13542]
+ * ext/iconv/iconv.c (iconv_iconv): also instance method needs to be
+ qualified.
+
Fri Nov 16 16:26:57 2007 Shugo Maeda <shugo@ruby-lang.org>
* include/ruby/ruby.h: added some declarations for event hooks.
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c
index 8fa6be0769..7a214f1cb6 100644
--- a/ext/iconv/iconv.c
+++ b/ext/iconv/iconv.c
@@ -757,7 +757,7 @@ iconv_finish(VALUE self)
}
/*
- * Document-method: iconv
+ * Document-method: Iconv#iconv
* call-seq: iconv(str, start=0, length=-1)
*
* Converts string and returns the result.