Skip to content

Commit

Permalink
Merge pull request #118 from janEbert/adjust-underscores
Browse files Browse the repository at this point in the history
Adjust blanks to be the same length
  • Loading branch information
Slids authored Jun 23, 2020
2 parents cf7818b + 80a6456 commit 5d4cd12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions koans/functions.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@
(assert-equal ____ (funcall (fourth functions) 2 33))))

(define-test lambda-with-optional-parameters
(assert-equal ___ ((lambda (a &optional (b 100)) (+ a b)) 10 9))
(assert-equal ___ ((lambda (a &optional (b 100)) (+ a b)) 10)))
(assert-equal ____ ((lambda (a &optional (b 100)) (+ a b)) 10 9))
(assert-equal ____ ((lambda (a &optional (b 100)) (+ a b)) 10)))

(defun make-adder (x)
;; MAKE-ADDER will create a function that closes over the parameter X.
Expand Down
2 changes: 1 addition & 1 deletion koans/strings.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
(let ((string "this is
a multi
line string"))
(true-or-false? ___ (typep string 'string))))
(true-or-false? ____ (typep string 'string))))

(define-test escapes-in-strings
;; Quotes and backslashes in Lisp strings must be escaped.
Expand Down

0 comments on commit 5d4cd12

Please sign in to comment.