diff options
author | Daniel Santos <dacs.git@brilhante.top> | 2023-01-18 16:53:09 +0000 |
---|---|---|
committer | Daniel Santos <dacs.git@brilhante.top> | 2023-01-18 16:53:09 +0000 |
commit | 387ea96a3ae4f390c9db41c29c81014219bc0aec (patch) | |
tree | 6b6c6519645aa9bdad4e7bdb8e5f6e2b897449c6 | |
parent | 1e53787827d9c6148782e5b2a5181c1b74d8d4a3 (diff) | |
download | cl-math-387ea96a3ae4f390c9db41c29c81014219bc0aec.tar.gz |
documentation typo
-rw-r--r-- | plus-inc.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plus-inc.lisp b/plus-inc.lisp index fd24a7d..d548bc6 100644 --- a/plus-inc.lisp +++ b/plus-inc.lisp @@ -3,7 +3,7 @@ (defvar *number-units-at-beginning* nil) (defun cut-digits (number-list-reversed) - "Given a reversed number list it cuts unecessay digits." + "Given a reversed number list it cuts unecessary digits." (cond ((null (cdr number-list-reversed)) number-list-reversed) ((eq (car number-list-reversed) '|0|) |