1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

(SRFI-13 Miscellaneous): In string-replace, start1 and end1 are not optional.

This commit is contained in:
Kevin Ryde 2003-05-23 21:35:30 +00:00
parent a502595f05
commit 5cd8b2d73e

View file

@ -1799,7 +1799,7 @@ cannot copy a string on top of itself.
another string and @code{string-tokenize} splits a string into a list of
strings, breaking it up at a specified character.
@deffn {Scheme Procedure} string-replace s1 s2 [start1 end1 start2 end2]
@deffn {Scheme Procedure} string-replace s1 s2 start1 end1 [start2 end2]
Return the string @var{s1}, but with the characters
@var{start1} @dots{} @var{end1} replaced by the characters
@var{start2} @dots{} @var{end2} from @var{s2}.