diff options
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calcalg3.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calcalg3.el b/lisp/calc/calcalg3.el index 8015b8ed7c1..229edc77c79 100644 --- a/lisp/calc/calcalg3.el +++ b/lisp/calc/calcalg3.el @@ -40,7 +40,7 @@ (defun math-map-binop (binop args1 args2) - "Apply BINOP to the elements of the lists ARGS1 and ARGS2" + "Apply BINOP to the elements of the lists ARGS1 and ARGS2." (if args1 (cons (funcall binop (car args1) (car args2)) |