From 1f281d385114681c1e69e5513ef514aa232e82f4 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sun, 6 Mar 2022 23:41:24 +0100 Subject: [PATCH] Rename the module in the example for tabulate*/untyped. --- scribblings/functions.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scribblings/functions.scrbl b/scribblings/functions.scrbl index 4165490..7766dda 100644 --- a/scribblings/functions.scrbl +++ b/scribblings/functions.scrbl @@ -139,11 +139,11 @@ and are not actually enforced. Some contracts on the functions tabulate a function of wrong arity will still raise an error. @examples[#:eval functions-evaluator -(module untyped-test racket/base +(module tabulate*/untyped-test racket/base (require "functions.rkt") (tabulate*/untyped (list (λ (x y z) (and x y z))) '((#f #t) (#f #t)))) -(eval:error (require 'untyped-test)) +(eval:error (require 'tabulate*/untyped-test)) ]} @section{Constructing functions}