diff options
author | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-08-16 20:30:27 +0000 |
---|---|---|
committer | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-08-16 20:30:27 +0000 |
commit | 33a52ba692f067478358f9a96b296343f7ee7c26 (patch) | |
tree | c5e1c575d1c3dbd4bbed5eff14c1f2e6770f35d5 | |
parent | 6d3318df9f1f0c4ee4dd7ca6aeaeca04bd5067a6 (diff) |
minor typo spotted by Jeremy Yallop
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@15093 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/bytesLabels.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/bytesLabels.mli b/stdlib/bytesLabels.mli index b92e76d09..b7ad82147 100644 --- a/stdlib/bytesLabels.mli +++ b/stdlib/bytesLabels.mli @@ -112,7 +112,7 @@ val map : f:(char -> char) -> bytes -> bytes stores the resulting bytes in a new sequence that is returned as the result. *) -val mapi : (int -> char -> char) -> bytes -> bytes +val mapi : f:(int -> char -> char) -> bytes -> bytes (** [mapi f s] calls [f] with each character of [s] and its index (in increasing index order) and stores the resulting bytes in a new sequence that is returned as the result. *) |