Skip to content

Commit

Permalink
Remove repeated "can" in lambda-list concept introduction (#750)
Browse files Browse the repository at this point in the history
* Remove repeated "can" in lambda-list concept introduction

* Run `./bin/configlet generate`
  • Loading branch information
link2xt authored Jul 13, 2023
1 parent eeb985d commit 1a1df79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion concepts/lambda-list/introduction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Introduction

In Common Lisp a function's argument list is known as a ['lambda list'][lambda-list].
A lambda list can can have arguments of different types.
A lambda list can have arguments of different types.
These different types are designated with the use of ['lambda list keywords'][lambda-list-keyword] which all begin with `&`.
The most commonly used types are optional, keyword and rest arguments types.
Every parameter in the lambda list after a particular lambda list keyword will be of that type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Lambda List

In Common Lisp a function's argument list is known as a ['lambda list'][lambda-list].
A lambda list can can have arguments of different types.
A lambda list can have arguments of different types.
These different types are designated with the use of ['lambda list keywords'][lambda-list-keyword] which all begin with `&`.
The most commonly used types are optional, keyword and rest arguments types.
Every parameter in the lambda list after a particular lambda list keyword will be of that type.
Expand Down

0 comments on commit 1a1df79

Please sign in to comment.