Skip to content

Commit

Permalink
reword test-transpose-using-mapcar doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
astronaut-wannabe committed Mar 10, 2016
1 parent db83e87 commit b146521
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koans/mapcar-and-reduce.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@


(define-test test-transpose-using-mapcar
"Replace WRONG-FUNCTION with the correct function (don't forget
the #') to take the 'transpose'."
"Replace the usage of WRONG-FUNCTION in 'transpose' with the
correct lisp function (don't forget the #')."
(defun WRONG-FUNCTION-1 (&rest rest) '())
(defun transpose (L) (apply #'mapcar (cons #'WRONG-FUNCTION-1 L)))
(assert-equal '((1 4 7)
Expand Down

0 comments on commit b146521

Please sign in to comment.