summaryrefslogtreecommitdiffstats
path: root/composing-comparators.md
diff options
context:
space:
mode:
authorGravatar Daphne Preston-Kendal 2021-04-02 13:54:27 +0200
committerGravatar Daphne Preston-Kendal 2021-04-02 13:54:27 +0200
commitd7bdfdcc41c39ac8678ba5ff5f9e823f4a3e6920 (patch)
tree0a2c423f440c60873544df6b0c1c7b599bf9189b /composing-comparators.md
parentRemove the stuff about performance, which isn’t necessarily true. (diff)
Fix a Markdown delimiter in the wrong place.
Diffstat (limited to '')
-rw-r--r--composing-comparators.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/composing-comparators.md b/composing-comparators.md
index 332f131..e003d18 100644
--- a/composing-comparators.md
+++ b/composing-comparators.md
@@ -4,7 +4,7 @@
### `(make-wrapper-comparator type-test unwrap contents-comparator)` (Procedure)
-Returns a comparator which compares values satisfying the predicate `type-test` by first calling the given `unwrap` procedure on them, then comparing the output of that procedure with the given `contents-comparator.` The hash function of the wrapper comparator returns the same value as the `contents-comparator` run on the unwrapped value.
+Returns a comparator which compares values satisfying the predicate `type-test` by first calling the given `unwrap` procedure on them, then comparing the output of that procedure with the given `contents-comparator`. The hash function of the wrapper comparator returns the same value as the `contents-comparator` run on the unwrapped value.
### `(make-composed-comparator type-test comparator ...)` (Procedure)