Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gilch committed Dec 24, 2023
1 parent ac14e40 commit 9f51bee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/lissp_whirlwind_tour.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ Lissp Whirlwind Tour


;; Remember, a gensym hash prefix is an alternative to qualification
;; for locals. (Thus, templates don't qualified them.)
;; for locals. (Thus, templates don't qualify them.)
#> (setattr _macro_
#.. 'once-triple
#.. (lambda x
Expand Down
2 changes: 1 addition & 1 deletion docs/macro_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ Now we're shorter than Python:
But we're also less general.
We can change the expression,
but we've hardcoded the parameters to it.
The fixed parameter name is fine as long unless it shadows a `nonlocal <nonlocal>` we need,
The fixed parameter name is fine unless it shadows a `nonlocal <nonlocal>` we need,
but what if we needed two parameters?
Could we make a macro for that?

Expand Down
2 changes: 1 addition & 1 deletion docs/style_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ a form modifying the previous (e.g. decorating, attaching attributes),
or adding it to a collection may be attached to it.

However, in many of these cases,
the groups could be written as a single top-level form insead,
the groups could be written as a single top-level form instead,
given the appropriate functions or macros.
E.g. `dict.update` (on `globals`), `let`, `@##<QzAT_QzHASH_>`, `attach`, `doto`.

Expand Down

0 comments on commit 9f51bee

Please sign in to comment.