Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion concepts/rest-parameters/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

In Common Lisp a function can have a parameter that will contain the "rest" of the arguments after any required or optional parameters are processed.
This parameter is designated by the `&rest` lambda list keyword.
If all arguments to a function are used by by other types of parameters then the rest parameter will be bound to an empty list.
If all arguments to a function are used by other types of parameters then the rest parameter will be bound to an empty list.
If there are unused arguments then the rest parameter will be bound to a list of those arguments.

```lisp
Expand Down