add @history[] notes for typed/racket/async

This commit is contained in:
Stephen Chang 2014-07-01 14:04:31 -04:00
parent 2dc59f7d6b
commit 3da81b5278
2 changed files with 3 additions and 1 deletions

View File

@ -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]

View File

@ -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)