diff options
author | Andy Wingo <wingo@pobox.com> | 2012-01-10 00:23:17 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-01-10 00:23:49 +0100 |
commit | 0bdd43515eb3c62839512181cf33e5aea383e661 (patch) | |
tree | beb0510b073def60e15d0aba064b76b62d331cd4 /doc/ref/api-data.texi | |
parent | bbc2364a3e15fd4c7bbaf2c1c41554d7e9a87b9b (diff) | |
parent | f78a1ccede02ccad89d6c91a6b297f1f14a30907 (diff) | |
download | guile-0bdd43515eb3c62839512181cf33e5aea383e661.tar.gz |
Merge commit 'f78a1ccede02ccad89d6c91a6b297f1f14a30907'
Diffstat (limited to 'doc/ref/api-data.texi')
-rw-r--r-- | doc/ref/api-data.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 5017165c0..f2450cea2 100644 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -3366,7 +3366,7 @@ Change every character in @var{str} between @var{start} and @var{end} to @var{fill}. @lisp -(define y "abcdefg") +(define y (string-copy "abcdefg")) (substring-fill! y 1 3 #\r) y @result{} "arrdefg" |