diff --git a/collects/scribblings/reference/numbers.scrbl b/collects/scribblings/reference/numbers.scrbl index 18c8b95b90..31f9eb8edc 100644 --- a/collects/scribblings/reference/numbers.scrbl +++ b/collects/scribblings/reference/numbers.scrbl @@ -701,6 +701,7 @@ than @scheme[decimal-digits] digits after the decimal (and it is padded with trailing zeros if necessary). @examples[ +#:eval math-eval (real->decimal-string pi) (real->decimal-string pi 5) ]} diff --git a/collects/scribblings/reference/shared.scrbl b/collects/scribblings/reference/shared.scrbl index fe78fcee76..67cfab2eb1 100644 --- a/collects/scribblings/reference/shared.scrbl +++ b/collects/scribblings/reference/shared.scrbl @@ -4,6 +4,10 @@ scheme/shared (for-label scheme/shared)) + +@(define shared-eval (make-base-eval)) +@interaction-eval[#:eval shared-eval (require scheme/shared)] + @(define maker (make-element #f (list (schemevarfont "prefix:") @@ -90,6 +94,7 @@ all @scheme[id]s are bound, so @scheme[_patchable-expr]s also created data cycles (but only with cycles that can be created via mutation). @examples[ +#:eval shared-eval (shared ([a (cons 1 a)]) a) (shared ([a (cons 1 b)]