This commit is contained in:
Simon Cruanes 2015-09-27 18:20:46 +02:00
parent fca7125c90
commit fe0169f0b6

View file

@ -152,7 +152,8 @@ See {!File.walk} if you also need to list directories:
module File : sig module File : sig
type 'a or_error = [`Ok of 'a | `Error of string] type 'a or_error = [`Ok of 'a | `Error of string]
type t = string type t = string
(** A file is always represented by its absolute path *) (** A file should be represented by its absolute path, but currently
this is not enforced. *)
val to_string : t -> string val to_string : t -> string