summaryrefslogtreecommitdiff
path: root/coding-exercises/2/61.rkt
diff options
context:
space:
mode:
Diffstat (limited to 'coding-exercises/2/61.rkt')
-rw-r--r--coding-exercises/2/61.rkt2
1 files changed, 1 insertions, 1 deletions
diff --git a/coding-exercises/2/61.rkt b/coding-exercises/2/61.rkt
index 71d773d..ed99294 100644
--- a/coding-exercises/2/61.rkt
+++ b/coding-exercises/2/61.rkt
@@ -6,7 +6,7 @@
(cond ((null? myset) (cons x '()))
((= (car myset) x) myset)
((> (car myset) x) (cons x myset))
- (else (cons (car myset)
+ (else (cons (car myset)
(adjoin-set x (cdr myset))))))
(define test-set (list 1 2 3 4 5 7))