diff options
-rw-r--r-- | README.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,7 +37,7 @@ In ~/examples/calc.lisp~ you see the following ~deflanguage~: #+end_src -This defines a cacluator language that you can use like so: +This defines a calculator language that you can use like so: #+begin_src lisp @@ -59,7 +59,7 @@ This defines a cacluator language that you can use like so: #+end_src The symbol ~calc~ also has a function docstring. If you are using -slime, you can evoke ~M-x slime-documentation~ with your cursor over +[[HTTPS://slime.common-lisp.dev/][SLIME]], you can evoke ~M-x slime-documentation~ with your cursor over the ~calc~ symbol to see this: #+begin_src @@ -154,7 +154,7 @@ and whose ~CDR~ varies depending on the value of the ~CAR~. |----------------------+--------------------------------------------------| | ~(:item)~ | Matches any token in TOKENS. | |----------------------+--------------------------------------------------| - | ~(:eof)~ | Excplicitly matches the end of the TOKENS list. | + | ~(:eof)~ | Explicitly matches the end of the TOKENS list. | |----------------------+--------------------------------------------------| |