aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.group.scm
diff options
context:
space:
mode:
Diffstat (limited to 'algebraic-structures.group.scm')
-rw-r--r--algebraic-structures.group.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/algebraic-structures.group.scm b/algebraic-structures.group.scm
index 5cac19f..ab2ba7e 100644
--- a/algebraic-structures.group.scm
+++ b/algebraic-structures.group.scm
@@ -1,6 +1,6 @@
-(functor ((algebraic-structures group) (M (<> unit inv)))
- (<> unit inv pow)
- (import (only M <> unit inv)
+(functor ((algebraic-structures group) (M (op unit inv)))
+ (op unit inv pow)
+ (import (only M op unit inv)
scheme
(chicken base))
@@ -13,4 +13,4 @@
(if (= i 0)
acc
(loop (sub1 i)
- (<> acc x)))))))
+ (op acc x)))))))