Skip to content

Commit 6adaa07

Browse files
authored
Correct mistake in documentation (#854)
1 parent 1738b57 commit 6adaa07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

concepts/optional-parameters/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ Finally a symbol can be specified for each optional parameter which will be boun
1313
(list :z-was-not-supplied z))))
1414
1515
(optional-parameters) ; => (NIL DEFAULT (:Z-WAS-NOT-SUPPLIED NIL))
16-
(optional-parameters 5 nil 10) ; => (5 DEFAULT (:Z-WAS-SUPPLIED 10))
16+
(optional-parameters 5 nil 10) ; => (5 NIL (:Z-WAS-SUPPLIED 10))
1717
```

exercises/concept/lillys-lasagna-leftovers/.docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Finally a symbol can be specified for each optional parameter which will be boun
2626
(list :z-was-not-supplied z))))
2727
2828
(optional-parameters) ; => (NIL DEFAULT (:Z-WAS-NOT-SUPPLIED NIL))
29-
(optional-parameters 5 nil 10) ; => (5 DEFAULT (:Z-WAS-SUPPLIED 10))
29+
(optional-parameters 5 nil 10) ; => (5 NIL (:Z-WAS-SUPPLIED 10))
3030
```
3131

3232
## Keyword Parameters

0 commit comments

Comments
 (0)