diff options
author | Peter Bex <peter@more-magic.net> | 2025-08-19 10:17:33 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2025-08-19 10:17:33 +0200 |
commit | 1007f7aef69d3fe28942ad74cc002b49bd1eefaa (patch) | |
tree | a373209aee9e1ebb533711a1db66110befc40e55 /benchmarks | |
parent | 66eb53e611256a163a0ff4623b889a8382948305 (diff) | |
download | slset-1007f7aef69d3fe28942ad74cc002b49bd1eefaa.tar.gz |
Use singular "slset" instead of plural "slsets"
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/benchmark.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/benchmark.scm b/benchmarks/benchmark.scm index 927fe15..1bd1f74 100644 --- a/benchmarks/benchmark.scm +++ b/benchmarks/benchmark.scm @@ -2,7 +2,7 @@ ;; Simple benchmarking program to compare set-difference on hash ;; tables, lsets and slsets. ;; -;; Note that the tests for slsets is severely disadvantaged because +;; Note that the tests for slset is severely disadvantaged because ;; the hash tables are created with the size of the set, which ;; normally would not be the case because you can't predict ahead of ;; time how big it would get. Also, the symbols have a short string @@ -11,7 +11,7 @@ (declare (disable-interrupts)) -(import (chicken fixnum) (chicken string) (chicken process-context) (chicken time) (only srfi-1 lset-difference) srfi-69 slsets) +(import (chicken fixnum) (chicken string) (chicken process-context) (chicken time) (only srfi-1 lset-difference) srfi-69 slset) (unless (= (length (command-line-arguments)) 2) (error "Need impl name (one of lset, slset, (cached-)symbolset, (cached-)hash-table or (cached-)srfi-69) and set size (number or 'loop')")) |