From 2825a997b5ed90eb3ae33225bd31f9c294f313ee Mon Sep 17 00:00:00 2001 From: Yuval Langer Date: Fri, 25 Oct 2024 16:14:24 +0300 Subject: [PATCH] Fix -l r4rs-tc parameter - it is actually r4rs/tc. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4275602f..a88a1d9f 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ See the `host//minify` script of a specific host for details. The `-l` option allows selecting the Scheme runtime library (located in the `lib` subdirectory). Here is a list of libraries : - `r4rs` : Adds all essential R4RS procedures. Includes a REPL that is fully R4RS compliant. - - `r4rs-tc` : Like `r4rs` but with run time type checking. + - `r4rs/tc` : Like `r4rs` but with run time type checking. - `min`, `max` : Minimal library for small scheme implementations, including a minimal REPL. - `max-tc` : Like `min` and `max` but with run time type checking. - `define-macro` : Necessary for using the `define-macro` construct.