From 3a7be80cc568a38e8bc4546a214dfe37452ce6ab Mon Sep 17 00:00:00 2001 From: "Arthur A. Gleckler" Date: Wed, 11 Jan 2017 21:14:49 -0800 Subject: [PATCH] Fix: examples were swapped. --- doc/ref-manual/lists.texi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/ref-manual/lists.texi b/doc/ref-manual/lists.texi index 7aeb3a772..263c1b052 100644 --- a/doc/ref-manual/lists.texi +++ b/doc/ref-manual/lists.texi @@ -527,9 +527,9 @@ list, otherwise returns @code{#f}. @example @group -(dotted-list? (list 'a 'b 'c)) @result{} #f -(dotted-list? (cons* 'a 'b 'c)) @result{} #t -(dotted-list? (circular-list 'a 'b 'c)) @result{} #f +(circular-list? (list 'a 'b 'c)) @result{} #f +(circular-list? (cons* 'a 'b 'c)) @result{} #f +(circular-list? (circular-list 'a 'b 'c)) @result{} #t @end group @end example @end deffn @@ -540,9 +540,9 @@ list, otherwise returns @code{#f}. @example @group -(circular-list? (list 'a 'b 'c)) @result{} #f -(circular-list? (cons* 'a 'b 'c)) @result{} #f -(circular-list? (circular-list 'a 'b 'c)) @result{} #t +(dotted-list? (list 'a 'b 'c)) @result{} #f +(dotted-list? (cons* 'a 'b 'c)) @result{} #t +(dotted-list? (circular-list 'a 'b 'c)) @result{} #f @end group @end example @end deffn -- 2.25.1