mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/strscan/strscan.c: fix rdoc. (length -> bytesize)
reported by Kornelius Kalnbach. see [ruby-core:27792] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
46c8b826fd
commit
6dc1a46323
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Jan 26 16:43:34 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/strscan/strscan.c: fix rdoc. (length -> bytesize)
|
||||||
|
reported by Kornelius Kalnbach. see [ruby-core:27792]
|
||||||
|
|
||||||
Tue Jan 26 07:06:05 2010 Tanaka Akira <akr@fsij.org>
|
Tue Jan 26 07:06:05 2010 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* lib/matrix.rb: suppress warnings.
|
* lib/matrix.rb: suppress warnings.
|
||||||
|
|
|
@ -353,9 +353,9 @@ strscan_concat(VALUE self, VALUE str)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns the position of the scan pointer. In the 'reset' position, this
|
* Returns the byte position of the scan pointer. In the 'reset' position, this
|
||||||
* value is zero. In the 'terminated' position (i.e. the string is exhausted),
|
* value is zero. In the 'terminated' position (i.e. the string is exhausted),
|
||||||
* this value is the length of the string.
|
* this value is the bytesize of the string.
|
||||||
*
|
*
|
||||||
* In short, it's a 0-based index into the string.
|
* In short, it's a 0-based index into the string.
|
||||||
*
|
*
|
||||||
|
@ -378,7 +378,7 @@ strscan_get_pos(VALUE self)
|
||||||
/*
|
/*
|
||||||
* call-seq: pos=(n)
|
* call-seq: pos=(n)
|
||||||
*
|
*
|
||||||
* Modify the scan pointer.
|
* Set the byte position of the scan pointer.
|
||||||
*
|
*
|
||||||
* s = StringScanner.new('test string')
|
* s = StringScanner.new('test string')
|
||||||
* s.pos = 7 # -> 7
|
* s.pos = 7 # -> 7
|
||||||
|
|
Loading…
Reference in a new issue