diff --git a/_oasis b/_oasis index 6b6ec618..dcde30ca 100644 --- a/_oasis +++ b/_oasis @@ -142,7 +142,7 @@ Document containers "-docflags '-colorize-code -short-functors -charset utf-8'" XOCamlbuildLibraries: containers, containers.iter, containers.data, - containers.string, containers.bigarray, + containers.string, containers.bigarray, containers.thread, containers.advanced, containers.io, containers.unix, containers.sexp Executable run_benchs diff --git a/src/threads/CCFuture.mli b/src/threads/CCFuture.mli index ff4691a5..c42a5785 100644 --- a/src/threads/CCFuture.mli +++ b/src/threads/CCFuture.mli @@ -55,7 +55,7 @@ val make2 : ('a -> 'b -> 'c) -> 'a -> 'b -> 'c t val get : 'a t -> 'a (** Blocking get: wait for the future to be evaluated, and get the value, or the exception that failed the future is returned. - @raise e if the exception failed with e *) + raise e if the future failed with e *) val state : 'a t -> 'a state (** State of the future *)