Correction to a comment in:
authorKevin Ryde <user42@zip.com.au>
Sat, 30 Aug 2003 00:02:44 +0000 (00:02 +0000)
committerKevin Ryde <user42@zip.com.au>
Sat, 30 Aug 2003 00:02:44 +0000 (00:02 +0000)
(list-copy): New tests.

test-suite/tests/srfi-1.test

index 4b4bf39..f3f898b 100644 (file)
 ;;
 
 (with-test-prefix "list-copy"
-  
-  ;; improper lists can be copied
   (pass-if (equal? '()          (list-copy '())))
   (pass-if (equal? '(1 2)       (list-copy '(1 2))))
   (pass-if (equal? '(1 2 3)     (list-copy '(1 2 3))))