aboutsummaryrefslogtreecommitdiff
path: root/src/math.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/math.lisp')
-rw-r--r--src/math.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math.lisp b/src/math.lisp
index 832c87c..89ccb0a 100644
--- a/src/math.lisp
+++ b/src/math.lisp
@@ -12,7 +12,7 @@
"Sums all numbers and stores result in name (first argument)"
`(op= '+ ,value ,@numbers))
-(defmacro ++_ (value)
+(defmacro ++1 (value)
"Adds increments value by one"
`(+= ,value 1))
@@ -24,7 +24,7 @@
"Decrements value by one"
`(-= ,value 1))
-(defmacro /= (value &rest numbers)
+(defmacro //= (value &rest numbers)
"Divides all numbers and stores result in name (first argument)"
`(op= '/ ,value ,@numbers))