diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-27 09:55:50 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-27 09:55:50 +0000 |
commit | 95933de17c122f254bd91231d04b9cab89f134c3 (patch) | |
tree | dcb89d15970690700b3c6ccf95a5c4a0f3d8b3e6 /stdlib/string.mli | |
parent | 208be2cae2ec48293f30590ba9184f0e813402d2 (diff) |
Corrections mineures sur la documentation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1933 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/string.mli')
-rw-r--r-- | stdlib/string.mli | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/stdlib/string.mli b/stdlib/string.mli index d5985a3b3..a98276039 100644 --- a/stdlib/string.mli +++ b/stdlib/string.mli @@ -71,19 +71,20 @@ val escaped: string -> string Objective Caml. *) val index: string -> char -> int - (* [index s c] returns the position of the leftmost occurrence of - character [c] in string [s]. Raise [Not_found] if [c] does not - occur in [s]. *) + (* [String.index s c] returns the position of the leftmost + occurrence of character [c] in string [s]. + Raise [Not_found] if [c] does not occur in [s]. *) val rindex: string -> char -> int - (* [rindex s c] returns the position of the rightmost occurrence of - character [c] in string [s]. Raise [Not_found] if [c] does not - occur in [s]. *) + (* [String.rindex s c] returns the position of the rightmost + occurrence of character [c] in string [s]. + Raise [Not_found] if [c] does not occur in [s]. *) val index_from: string -> int -> char -> int val rindex_from: string -> int -> char -> int - (* Same as [index] and [rindex], but start searching at the character - position given as second argument. [index s c] is equivalent - to [index_from s 0 c], and [rindex s c] to - [rindex_from s (String.length s - 1) c]. *) + (* Same as [String.index] and [String.rindex], but start + searching at the character position given as second argument. + [String.index s c] is equivalent to [String.index_from s 0 c], + and [String.rindex s c] to + [String.rindex_from s (String.length s - 1) c]. *) val uppercase: string -> string (* Return a copy of the argument, with all lowercase letters |