diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-13 14:24:11 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-13 14:24:11 +0000 |
commit | ff8dba586fa4a80bd1958e0eef3b1dfca2eba158 (patch) | |
tree | bdae428394b1d0a9cf086b5f58a3567e654b3bff /otherlibs/unix | |
parent | f67cf2d0cdf8b223594ce1ebc8bdfdee3f059978 (diff) |
Typos.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@440 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix')
-rw-r--r-- | otherlibs/unix/unix.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/unix.mli b/otherlibs/unix/unix.mli index ff1f51cae..f71408407 100644 --- a/otherlibs/unix/unix.mli +++ b/otherlibs/unix/unix.mli @@ -214,11 +214,11 @@ external openfile : string -> open_flag list -> file_perm -> file_descr external close : file_descr -> unit = "unix_close" (* Close a file descriptor. *) external read : file_descr -> string -> int -> int -> int = "unix_read" - (* [read fd buff start len] reads [len] characters from descriptor + (* [read fd buff ofs len] reads [len] characters from descriptor [fd], storing them in string [buff], starting at position [ofs] in string [buff]. Return the number of characters actually read. *) external write : file_descr -> string -> int -> int -> int = "unix_write" - (* [write fd buff start len] writes [len] characters to descriptor + (* [write fd buff ofs len] writes [len] characters to descriptor [fd], taking them from string [buff], starting at position [ofs] in string [buff]. Return the number of characters actually written. *) |