Skip to content

Commit

Permalink
Minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
gilch committed Aug 25, 2024
1 parent e3bf209 commit 984fd5a
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 @@ -372,7 +372,7 @@ Lissp Whirlwind Tour
>>> ':-<>>'
':-<>>'

#> : ;Shortest a control word.
#> : ;Shortest control word.
>>> ':'
':'

Expand Down
2 changes: 1 addition & 1 deletion docs/style_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ Zero or one positional parameters have one obvious answer. Two only has two to c
These are fine. Three has six. Are you sure you picked the best one?
Four already has 24 permutations, which, realistically,
you're not likely to consider exhaustively,
so you need a good reason to nail at least one of them down.
so you need a good reason to nail down at least one of them.
It just gets worse from there. The factorial sequence grows pretty quickly.
Why not make it easy and use meaningful names instead of meaningless positions?
Kwonly is there for you.
Expand Down
2 changes: 1 addition & 1 deletion src/hissp/macros.lissp
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ Hidden doctest adds bundled macros for REPL-consistent behavior.
(alias op operator.)

(defmacro chain\# (xss)
"``chain#`` Abbreviation for `itertools.chain.from_iterable`"
"``chain#`` Abbreviation for `itertools.chain.from_iterable`."
`(i#chain.from_iterable ,xss))

(defmacro get\# e
Expand Down

0 comments on commit 984fd5a

Please sign in to comment.