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
detractors.
This document aims to give a comprehensive overview of the macro system and
how to use it. If youre in a hurry or want to see whether Carp implements your
This document aims to give a comprehensive overview of the macro system and how
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
Nutshell”](#in-a-nutshell). If you want to spend some quality understanding
how to work on or with the macro systems, the sections [“Working with
Macros”](#working-with-macros) and [“Inner Workings”](#inner-workings) will
probably be more useful to you.
Nutshell”](#in-a-nutshell). If you want to spend some quality time
understanding how to work on or with the macro systems, the sections [“Working
with Macros”](#working-with-macros) and [“Inner Workings”](#inner-workings)
will probably be more useful to you.
## In a Nutshell