summaryrefslogtreecommitdiffstats
path: root/README.EXT
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-04 00:53:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-04 00:53:19 +0000
commit124c679b8fe756fa64580285f17eca55e06a6b54 (patch)
tree3591c54bcdf4777458afb8fffe1038fff8be04e5 /README.EXT
parent8b87b4b66efb1dfe21b9a87b0958f1c531c9ac5e (diff)
downloadruby-124c679b8fe756fa64580285f17eca55e06a6b54.tar.gz
ruby-124c679b8fe756fa64580285f17eca55e06a6b54.tar.xz
ruby-124c679b8fe756fa64580285f17eca55e06a6b54.zip
* README.EXT: typo fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23639 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.EXT b/README.EXT
index c28c25973..667d55166 100644
--- a/README.EXT
+++ b/README.EXT
@@ -125,9 +125,9 @@ casting macro will be of the form RXXXX for each data type; for
instance, RARRAY(obj). See "ruby.h".
There are some accessing macros for structure members, for example
-`RSTRING_LEN(s)' to to get the size of the Ruby String object. The
-allocated region can be accessed by `RSTRING_PTR(str). For arrays, use
-`RARRAY_LEN(ary) and `RARRAY_PTR(ary) respectively.
+`RSTRING_LEN(str)' to get the size of the Ruby String object. The
+allocated region can be accessed by `RSTRING_PTR(str)'. For arrays,
+use `RARRAY_LEN(ary)' and `RARRAY_PTR(ary)' respectively.
Notice: Do not change the value of the structure directly, unless you
are responsible for the result. This ends up being the cause of