From 6dc1ee17c523e070568c4e4efe940eaa6f023820 Mon Sep 17 00:00:00 2001 From: zzak Date: Wed, 24 Apr 2013 04:55:07 +0000 Subject: [PATCH] * string.c: Document String#setbyte return value by @gjmurakami-10gen [Fixes GH-294] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40434 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ string.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4fa6f52d36..3067e7b2c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 24 13:54:00 2013 Zachary Scott + + * string.c: Document String#setbyte return value by @gjmurakami-10gen + [Fixes GH-294] + Wed Apr 24 13:45:00 2013 Zachary Scott * class.c: Example of Object#methods by @windwiny [Fixes GH-293] diff --git a/string.c b/string.c index 42798385fa..00a3399db9 100644 --- a/string.c +++ b/string.c @@ -4092,9 +4092,9 @@ rb_str_getbyte(VALUE str, VALUE index) /* * call-seq: - * str.setbyte(index, int) -> int + * str.setbyte(index, integer) -> integer * - * modifies the indexth byte as int. + * modifies the indexth byte as integer. */ static VALUE rb_str_setbyte(VALUE str, VALUE index, VALUE value)