comment modified.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-09-12 11:31:28 +00:00
parent 0de51bcc75
commit 290ae0ea85
1 changed files with 2 additions and 2 deletions

View File

@ -98,10 +98,10 @@ rb_encoding* rb_enc_from_index(int idx);
/* name -> rb_encoding */
rb_encoding * rb_enc_find(const char *name);
/* encoding -> name */
/* rb_encoding * -> name */
#define rb_enc_name(enc) (enc)->name
/* encoding -> minlen/maxlen */
/* rb_encoding * -> minlen/maxlen */
#define rb_enc_mbminlen(enc) (enc)->min_enc_len
#define rb_enc_mbmaxlen(enc) (enc)->max_enc_len