docs: fix typo in Macros.md (#1331)

This commit is contained in:
Scott Olsen 2021-10-12 11:52:24 -04:00 committed by GitHub
parent 998948ec6b
commit 9e12750842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,13 +4,13 @@ Macros are among the most divisive features about any Lisp. There are many
different design decisions to be made, and all of them have proponents and different design decisions to be made, and all of them have proponents and
detractors. detractors.
This document aims to give a comprehensive overview of the macro system and This document aims to give a comprehensive overview of the macro system and how
how to use it. If youre in a hurry or want to see whether Carp implements your to use it. If youre in a hurry or want to see whether Carp implements your
favorite macro feature, you probably want to read the section [“In a favorite macro feature, you probably want to read the section [“In a
Nutshell”](#in-a-nutshell). If you want to spend some quality understanding Nutshell”](#in-a-nutshell). If you want to spend some quality time
how to work on or with the macro systems, the sections [“Working with understanding how to work on or with the macro systems, the sections [“Working
Macros”](#working-with-macros) and [“Inner Workings”](#inner-workings) will with Macros”](#working-with-macros) and [“Inner Workings”](#inner-workings)
probably be more useful to you. will probably be more useful to you.
## In a Nutshell ## In a Nutshell