Skip to content
Snippets Groups Projects
Commit 2f10c9d2 authored by Michele Alberti's avatar Michele Alberti
Browse files

[kernel] Fix indentation.

parent 0ecf30a0
No related branches found
No related tags found
No related merge requests found
......@@ -308,27 +308,25 @@ module type Specific_dir = sig
?mode:[`Create_path | `Normalize_only | `Must_exist ] ->
string ->
Filepath.Normalized.t
(**[get_dir ?mode p] returns a local-path [p], relative to the plugin
<specific-dir> directory, to a sub-directory of the plugin <specific-dir>
directory.
@param mode determines how to handle the resulting path:
+ [Create_path] creates the resulting path, if does not exist.
+ [Normalize_only] just normalizes the resulting path.
+ [Must_exist] aborts if the resulting path does not exist.
*)
(** [get_dir ?mode p] returns a local-path [p], relative to the plugin
<specific-dir> directory, to a sub-directory of the plugin <specific-dir>
directory.
@param mode determines how to handle the resulting path:
+ [Create_path] creates the resulting path, if does not exist.
+ [Normalize_only] just normalizes the resulting path.
+ [Must_exist] aborts if the resulting path does not exist. *)
val get_file:
?mode:[`Create_path | `Normalize_only | `Must_exist ] ->
string ->
Filepath.Normalized.t
(**[get_file ?mode p] returns a local-path [p], relative to the plugin
<specific-dir> directory, to a file in the plugin <specific-dir>
directory.
@param mode determines how to handle the resulting path:
+ [Create_path] creates the dirname of resulting path, if does not exist.
+ [Normalize_only] just normalizes the resulting path.
+ [Must_exist] aborts if the resulting path does not exist.
*)
(** [get_file ?mode p] returns a local-path [p], relative to the plugin
<specific-dir> directory, to a file in the plugin <specific-dir>
directory.
@param mode determines how to handle the resulting path:
+ [Create_path] creates the dirname of resulting path, if does not exist.
+ [Normalize_only] just normalizes the resulting path.
+ [Must_exist] aborts if the resulting path does not exist. *)
end
(* ************************************************************************** *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment