Skip to content

Commit

Permalink
strではなくselfを返すコメントについて対応
Browse files Browse the repository at this point in the history
  • Loading branch information
hiropk committed May 10, 2024
1 parent f28efae commit 1af6b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions refm/api/src/_builtin/String
Original file line number Diff line number Diff line change
Expand Up @@ -3698,9 +3698,9 @@ range で指定したバイトの範囲に含まれる部分文字列を返し
--- bytesplice(range, str, str_range) -> String
#@end

self の一部または全部を str で置き換えて str を返します。
self の一部または全部を str で置き換えて self を返します。
#@since 3.3
str_index と str_length もしくは str_range が与えられたとき、self の一部または全部を str.byteslice(str_index, str_length) もしくは str.byteslice(str_range) で置き換えて str を返します
str_index と str_length もしくは str_range が与えられたとき、self の一部または全部を str.byteslice(str_index, str_length) もしくは str.byteslice(str_range) で置き換えます
ただし、str の部分文字列は新しい文字列オブジェクトとして生成されません。
#@end

Expand Down

0 comments on commit 1af6b81

Please sign in to comment.