summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2024-07-10 07:31:56 -0400
committerDavid Thompson <dthompson2@worcester.edu>2024-07-10 07:31:56 -0400
commit7fb92ba3828878cea62b3c16b7f8cd593b2044b4 (patch)
tree8b9c34c55224442bedf9d29d5f553800f48ac506
parentcc3e6d68b61382008d3e8cbec5785f66e243bbe1 (diff)
Fix harmless but misleading copy/paste error.HEADmaster
-rw-r--r--chapter-7/propagators.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter-7/propagators.scm b/chapter-7/propagators.scm
index 1835d9c..c3d0cc4 100644
--- a/chapter-7/propagators.scm
+++ b/chapter-7/propagators.scm
@@ -611,7 +611,7 @@
(define (build)
(r:rgb->hsv rgb hsv)
(r:hsv->rgb hsv rgb))
- (constraint-propagator 'r:components<->hsv (list rgb hsv) build))
+ (constraint-propagator 'r:rgb<->hsv (list rgb hsv) build))
(define (render exp)
(append-child! (document-body) (sxml->dom exp)))