summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-01-18 16:53:09 +0000
committerDaniel Santos <dacs.git@brilhante.top>2023-01-18 16:53:09 +0000
commit387ea96a3ae4f390c9db41c29c81014219bc0aec (patch)
tree6b6c6519645aa9bdad4e7bdb8e5f6e2b897449c6
parent1e53787827d9c6148782e5b2a5181c1b74d8d4a3 (diff)
downloadcl-math-387ea96a3ae4f390c9db41c29c81014219bc0aec.tar.gz
documentation typo
-rw-r--r--plus-inc.lisp2
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|)