aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/nkf/nkf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/nkf/nkf.c b/ext/nkf/nkf.c
index 0cf16fa9e2..3db6003bbf 100644
--- a/ext/nkf/nkf.c
+++ b/ext/nkf/nkf.c
@@ -133,10 +133,6 @@ int nkf_split_options(const char *arg)
*
* require 'nkf'
* output = NKF.nkf("-s", input)
- *
- * *Note*
- * By default, nkf decodes MIME encoded string.
- * If you want not to decode input, use NKF.nkf with <b>-m0</b> flag.
*/
static VALUE
@@ -472,9 +468,7 @@ rb_nkf_guess(VALUE obj, VALUE src)
void
Init_nkf()
{
- /* hoge */
VALUE mNKF = rb_define_module("NKF");
- /* hoge */
rb_define_module_function(mNKF, "nkf", rb_nkf_convert, 2);
rb_define_module_function(mNKF, "guess", rb_nkf_guess, 1);