aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.string.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
commitf8583f9a85f54d0a7b4902d0d23b1b83f387b593 (patch)
tree266eed4c18affaeac756dee300064e55f515d83b /algebraic-structures.private.string.scm
parent6464288c0518db387657a16082fe541c253c463a (diff)
Rename function from `<>` to `op`
Diffstat (limited to 'algebraic-structures.private.string.scm')
-rw-r--r--algebraic-structures.private.string.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/algebraic-structures.private.string.scm b/algebraic-structures.private.string.scm
index c6d17b6..dfe2e2d 100644
--- a/algebraic-structures.private.string.scm
+++ b/algebraic-structures.private.string.scm
@@ -1,6 +1,6 @@
-(module (algebraic-structures private string) (<> unit)
+(module (algebraic-structures private string) (op unit)
(import scheme)
- (define (<> x y) (string-append x y))
+ (define (op x y) (string-append x y))
(define unit ""))