From 1933ba15841255c5f7386fb24d011e24d184b9ad Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Sat, 28 Mar 2020 22:13:16 -0700 Subject: [PATCH] extensions.scrbl fix confusing typo in example The module is named `hi` but the text said that it was named `hello` which is quite confusing since `"hello"` is actually the string that is bound to `greeting`. --- pkgs/racket-doc/scribblings/inside/extensions.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/inside/extensions.scrbl b/pkgs/racket-doc/scribblings/inside/extensions.scrbl index d80f9184d0..9453d5b4fb 100644 --- a/pkgs/racket-doc/scribblings/inside/extensions.scrbl +++ b/pkgs/racket-doc/scribblings/inside/extensions.scrbl @@ -210,7 +210,7 @@ To create an extension that behaves as a module, return a symbol from @cpp{scheme_reload} declare a module using @cpp{scheme_primitive_module}. For example, the following extension implements a module named -@racket[hello] that exports a binding @racket[greeting]: +@racket[hi] that exports a binding @racket[greeting]: @verbatim[#:indent 2]{ #include "escheme.h"