diff options
author | colin <colin@cicadas.surf> | 2023-08-15 06:53:25 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-08-15 06:53:25 -0700 |
commit | 6e2577dc66c2c6528f5e360ac83c383704ae11fc (patch) | |
tree | 661ef33e14ea3ead9c0510c10d26e00d96339573 | |
parent | 72c290b8c8bfe199f9d3f2afb43ffa3bb219f37b (diff) |
readme
-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. | |----------------------+--------------------------------------------------| |