From 633e4a25e837c997853a932ab3fd0e5797991eb2 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 6 Jun 2013 17:09:55 -0600 Subject: [PATCH] ffi/unsafe: doc repair MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit from Клочков Роман --- collects/scribblings/foreign/types.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/foreign/types.scrbl b/collects/scribblings/foreign/types.scrbl index 93f66515cb..b1680f3537 100644 --- a/collects/scribblings/foreign/types.scrbl +++ b/collects/scribblings/foreign/types.scrbl @@ -809,7 +809,7 @@ the @racket[_float] type. @racketblock[ (define-fun-syntax _float* (syntax-id-rules (_float*) - [(_float*) (type: _float pre: (x => (+ 0.0 x)))])) + [_float* (type: _float pre: (x => (+ 0.0 x)))])) (_fun _float* ->> _bool)]}