Fix: examples were swapped.
authorArthur A. Gleckler <gnu@speechcode.com>
Thu, 12 Jan 2017 05:14:49 +0000 (21:14 -0800)
committerArthur A. Gleckler <gnu@speechcode.com>
Thu, 12 Jan 2017 05:14:49 +0000 (21:14 -0800)
doc/ref-manual/lists.texi

index 7aeb3a772c075405a343a4078ab0f93213b6ecca..263c1b05244d957d55a864b82f4900f9ada900ab 100644 (file)
@@ -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