diff options
author | Darren Bane <darren.bane@gmail.com> | 2021-04-20 15:46:58 +0100 |
---|---|---|
committer | Darren Bane <darren.bane@gmail.com> | 2021-04-20 15:46:58 +0100 |
commit | 48358adb04bb37cb1630e137ec181a0b6997ca64 (patch) | |
tree | 3a9bab17f238db8dc4b79c6ec8202a6be9624818 | |
parent | 6cb2ab95bc21bc226f103445fa6a4da75a22c9e3 (diff) | |
download | lsp-48358adb04bb37cb1630e137ec181a0b6997ca64.tar.gz |
Doc updates
-rw-r--r-- | basic.lsp | 2 | ||||
-rw-r--r-- | doc/breaking_rules.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basic.lsp b/basic.lsp index a63ab27..09efc5c 100644 --- a/basic.lsp +++ b/basic.lsp @@ -67,7 +67,7 @@ (defgeneric ppl (pr expr)) (defmethod ppl (pr (expr <exp-int>)) - (convert (num expr) <string>)) + (convert (int expr) <string>)) (defmethod ppl (pr (expr <exp-var>)) (var expr)) (defmethod ppl (pr (expr <exp-str>)) diff --git a/doc/breaking_rules.md b/doc/breaking_rules.md index 31a1857..d9c499b 100644 --- a/doc/breaking_rules.md +++ b/doc/breaking_rules.md @@ -78,7 +78,7 @@ it could be difficult to satisfy expectations. ### Dependencies Counterintuitively, I chose ISLisp partly *because* it imposes limits in the prototyping phase. -Standard UNIX libraries like curses, xdr and dbm can still be used from compiled code using the FFI. +Standard UNIX libraries like curses, catgets, xdr and dbm can still be used from compiled code using the FFI. ## Coding standards |