From d46cfbdf22d1185701e7106a83a87a79f7d37bb5 Mon Sep 17 00:00:00 2001 From: Stephen Chang Date: Tue, 1 Jul 2014 14:04:31 -0400 Subject: [PATCH] add @history[] notes for typed/racket/async original commit: 3da81b52788b29456910fcccb3cb92194e84a28b --- .../typed-racket/scribblings/reference/libraries.scrbl | 2 +- .../typed-racket/scribblings/reference/types.scrbl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/libraries.scrbl b/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/libraries.scrbl index 1a759e9a..5b40c72c 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/libraries.scrbl +++ b/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/libraries.scrbl @@ -71,7 +71,7 @@ The following libraries are included with Typed Racket in the @defmodule/incl[typed/openssl/md5] @defmodule/incl[typed/openssl/sha1] @defmodule/incl[typed/pict] -@defmodule/incl[typed/racket/async-channel] +@defmodule[typed/racket/async-channel @history[#:added "1.1"]] @defmodule/incl[typed/rackunit] @defmodule/incl[typed/srfi/14] @defmodule/incl[typed/syntax/stx] diff --git a/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/types.scrbl b/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/types.scrbl index 58952de3..a6a1aca0 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/types.scrbl +++ b/pkgs/typed-racket-pkgs/typed-racket-doc/typed-racket/scribblings/reference/types.scrbl @@ -418,6 +418,7 @@ corresponding to @racket[trest], where @racket[bound] (require typed/racket/async-channel) (ann (make-async-channel) (Async-Channelof Symbol)) ] +@history[#:added "1.1"] } @defidform[Async-ChannelTop]{is the type of an @rtech{asynchronous channel} with unknown @@ -426,6 +427,7 @@ corresponding to @racket[trest], where @racket[bound] @racket[async-channel?]. @ex[(require typed/racket/async-channel) (lambda: ([x : Any]) (if (async-channel? x) x (error "not an async-channel!")))] +@history[#:added "1.1"] } @defform*[[(Parameterof t)