(core::str) rename ++

This commit is contained in:
Kevin Cantu 2012-02-23 01:53:32 -08:00 committed by Marijn Haverbeke
parent c3318f29fe
commit 961b6446b6
1 changed files with 2 additions and 2 deletions

View File

@ -1192,7 +1192,7 @@ fn substr_len_chars(s: str, byte_start: uint, byte_len: uint) -> uint {
}
/*
Function: substr_len_bytes
Function: substr_len
As byte_len but for a substring
@ -1210,7 +1210,7 @@ Safety note:
This function fails if `byte_offset` or `char_len` do not represent
valid positions in `s`
*/
fn substr_len_bytes(s: str, byte_offset: uint, char_len: uint) -> uint {
fn substr_len(s: str, byte_offset: uint, char_len: uint) -> uint {
let i = byte_offset;
let chars = 0u;
while chars < char_len {