From 8ce80587965cb5966f6466307ba6ec9811956139 Mon Sep 17 00:00:00 2001 From: Gan Shen Date: Sun, 16 Dec 2018 19:19:00 +0800 Subject: [PATCH] fix typo --- pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl b/pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl index e73cf6f5a0..4746e3152b 100644 --- a/pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl +++ b/pkgs/racket-doc/scribblings/guide/contracts/exists.scrbl @@ -21,7 +21,7 @@ The @racket[contract-out] form allows you to write introduces the variable @racket[_name-of-a-new-contract], binding it to a new contract that hides information about the values it protects. -As an example, consider this (simple) implementation of a queue datastructure: +As an example, consider this (simple) implementation of a queue data structure: @racketmod[racket (define empty '()) (define (enq top queue) (append queue (list top)))