Fix doc contracts for continuation aborts

This commit is contained in:
Asumu Takikawa 2012-09-13 14:47:35 -04:00
parent 4cc475ad68
commit e71caa5d06
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ a given thunk.}
@defproc[(abort-current-continuation
[prompt-tag any/c]
[v any/c] ...+)
[v any/c] ...)
any]{
Resets the current continuation to that of the nearest prompt tagged

View File

@ -31,7 +31,7 @@ The @racket[call/prompt] binding is an alias for @racket[call-with-continuation-
@defproc[(abort/cc
[prompt-tag any/c]
[v any/c] ...+)
[v any/c] ...)
any]{
The @racket[abort/cc] binding is an alias for @racket[abort-current-continuation].
}