From 3b80c3585221a899c9a6b87e742d267655bb0abc Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 1 Apr 2013 01:21:30 -0400 Subject: [PATCH] Fix typos in 'string-join' docs: 'string-infix' -> 'strict-infix'. * doc/ref/api-data.texi (String Constructors): In definition of 'string-join', change 'string-infix' -> 'strict-infix'. * libguile/srfi-13.c (scm_string_join): In docstring, change 'string-infix' -> 'strict-infix'. --- doc/ref/api-data.texi | 2 +- libguile/srfi-13.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 17baed27d..0a5a2de77 100644 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -3148,7 +3148,7 @@ placed between the strings, and defaults to the symbol @item infix Insert the separator between list elements. An empty string will produce an empty list. -@item string-infix +@item strict-infix Like @code{infix}, but will raise an error if given the empty list. @item suffix diff --git a/libguile/srfi-13.c b/libguile/srfi-13.c index 97c5a1d64..81065da43 100644 --- a/libguile/srfi-13.c +++ b/libguile/srfi-13.c @@ -384,7 +384,7 @@ SCM_DEFINE (scm_string_join, "string-join", 1, 2, 0, "@item infix\n" "Insert the separator between list elements. An empty string\n" "will produce an empty list.\n" - "@item string-infix\n" + "@item strict-infix\n" "Like @code{infix}, but will raise an error if given the empty\n" "list.\n" "@item suffix\n" -- 2.20.1