From af97fe9e5a77dd81fb51a8de3789f15ad0e91861 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 11 Mar 2002 08:45:40 +0000 Subject: [PATCH] Open_append implique Open_write automatiquement => simplification de la doc git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4500 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- stdlib/pervasives.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/pervasives.mli b/stdlib/pervasives.mli index 941917443..620213fa8 100644 --- a/stdlib/pervasives.mli +++ b/stdlib/pervasives.mli @@ -608,7 +608,7 @@ val read_float : unit -> float type open_flag = Open_rdonly (** open for reading. *) | Open_wronly (** open for writing. *) - | Open_append (** open for appending. always write at end of file (needs [Open_wronly]. *) + | Open_append (** open for appending: always write at end of file. *) | Open_creat (** create the file if it does not exist. *) | Open_trunc (** empty the file if it already exists. *) | Open_excl (** fail if the file already exists. *)