diff options
author | Daniel Santos <dacs.git@brilhante.top> | 2023-01-11 16:38:36 +0000 |
---|---|---|
committer | Daniel Santos <dacs.git@brilhante.top> | 2023-01-11 16:38:36 +0000 |
commit | 04eb4cd03353eda03b1f4e9606e3becf0d572f5d (patch) | |
tree | 100c6b91337db104a00728884021d26899d71c20 | |
parent | beef5560a536a8ba689090f061bb739c7112691d (diff) | |
download | cl-math-04eb4cd03353eda03b1f4e9606e3becf0d572f5d.tar.gz |
improve doc
-rw-r--r-- | cl-math.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cl-math.lisp b/cl-math.lisp index 5bb880d..b0272db 100644 --- a/cl-math.lisp +++ b/cl-math.lisp @@ -82,7 +82,7 @@ (nth-value 0 (parse-integer (symbol-name symbol)))) (defun plus-decimal (&rest args) - "Given decimal numbers, it returns it's sum." + "Given decimal numbers, it returns the symbol it's sum." (nth-value 0 (implode (reduce (lambda (a b) (plus '(|0| |1| |2| |3| |4| |5| |6| |7| |8| |9|) a b)) args)))) (defun plus-earth (&rest args) |