diff options
Diffstat (limited to 'stdlib')
-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. *) |