diff options
Diffstat (limited to 'srfi/srfi-13.c')
-rw-r--r-- | srfi/srfi-13.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi/srfi-13.c b/srfi/srfi-13.c index 231e2adaa..3d32cf744 100644 --- a/srfi/srfi-13.c +++ b/srfi/srfi-13.c @@ -2521,7 +2521,7 @@ SCM_DEFINE (scm_string_unfold, "string-unfold", 4, 2, 0, "@dots{}\n" "@item @var{p} tells us when to stop -- when it returns true\n" "when applied to one of these seed values.\n" - "@item @var{f} maps each seed value to the corresponding \n" + "@item @var{f} maps each seed value to the corresponding\n" "character in the result string. These chars are assembled\n" "into the string in a left-to-right order.\n" "@item @var{base} is the optional initial/leftmost portion\n" @@ -2583,7 +2583,7 @@ SCM_DEFINE (scm_string_unfold_right, "string-unfold-right", 4, 2, 0, "@dots{}\n" "@item @var{p} tells us when to stop -- when it returns true\n" "when applied to one of these seed values.\n" - "@item @var{f} maps each seed value to the corresponding \n" + "@item @var{f} maps each seed value to the corresponding\n" "character in the result string. These chars are assembled\n" "into the string in a right-to-left order.\n" "@item @var{base} is the optional initial/rightmost portion\n" |