mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
Update CCString.mli to align parameter names in mli descriptions and implementations.
This commit is contained in:
parent
1498158a4f
commit
6c8569a7d9
1 changed files with 2 additions and 2 deletions
|
|
@ -184,11 +184,11 @@ val take : int -> string -> string
|
|||
|
||||
val take_while : (char -> bool) -> string -> string
|
||||
(** [take_while p s] keeps only the longest prefix [t] of [s] such that every
|
||||
character [c] in [t] satisfies [f c]. *)
|
||||
character [c] in [t] satisfies [p c]. *)
|
||||
|
||||
val rtake_while : (char -> bool) -> string -> string
|
||||
(** [rtake_while p s] keeps only the longest suffix [t] of [s] such that every
|
||||
character [c] in [t] satisfies [f c]. *)
|
||||
character [c] in [t] satisfies [p c]. *)
|
||||
|
||||
val drop : int -> string -> string
|
||||
(** [drop n s] removes the [n] first chars of [s].
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue