doc: require 'scribble/example' in 'examples' example

Also increase the memory limit in the example.
(On my machine, this example fails if the memory limit is 37MB or less.)
This commit is contained in:
Ben Greenman 2017-08-31 00:29:37 -04:00
parent d3b0f98e0e
commit 9fc96fc56e

View File

@ -177,10 +177,11 @@ As an example,
@codeblock|{
#lang scribble/manual
@(require racket/sandbox
scribble/eval)
scribble/example)
@(define my-evaluator
(parameterize ([sandbox-output 'string]
[sandbox-error-output 'string])
[sandbox-error-output 'string]
[sandbox-memory-limit 50])
(make-evaluator 'typed/racket/base)))
@examples[#:eval my-evaluator