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 1a759e9afb..5b40c72ced 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 58952de38c..a6a1aca0c7 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)