diff options
Diffstat (limited to 'cl-math.lisp')
-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) |