summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stdlib/marshal.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/marshal.mli b/stdlib/marshal.mli
index 2b4a6056e3..b49eb0def1 100644
--- a/stdlib/marshal.mli
+++ b/stdlib/marshal.mli
@@ -47,7 +47,7 @@ type extern_flags =
| Closures (* Send function closures *)
(* The flags to the [Marshal.to_*] functions below. *)
-external to_channel: out_channel -> 'a -> flags:extern_flags list -> unit
+external to_channel: out_channel -> 'a -> mode:extern_flags list -> unit
= "output_value"
(* [Marshal.to_channel chan v flags] writes the representation
of [v] on channel [chan]. The [flags] argument is a
@@ -78,7 +78,7 @@ external to_channel: out_channel -> 'a -> flags:extern_flags list -> unit
at un-marshaling time, using an MD5 digest of the code
transmitted along with the code position.) *)
-external to_string: 'a -> flags:extern_flags list -> string
+external to_string: 'a -> mode:extern_flags list -> string
= "output_value_to_string"
(* [Marshal.to_string v flags] returns a string containing
the representation of [v] as a sequence of bytes.
@@ -86,7 +86,7 @@ external to_string: 'a -> flags:extern_flags list -> string
[Marshal.to_channel]. *)
val to_buffer: string -> pos:int -> len:int ->
- 'a -> flags:extern_flags list -> int
+ 'a -> mode:extern_flags list -> int
(* [Marshal.to_buffer buff ofs len v flags] marshals the value [v],
storing its byte representation in the string [buff],
starting at character number [ofs], and writing at most