aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/vcs.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vcs.mli')
-rw-r--r--lib/vcs.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vcs.mli b/lib/vcs.mli
index 7c82352ae..7ac568c12 100644
--- a/lib/vcs.mli
+++ b/lib/vcs.mli
@@ -43,7 +43,7 @@ module type S = sig
type ('kind,'diff,'info) t constraint 'kind = [> `Master ]
- val empty : default_info:'info -> id -> ('kind,'diff,'info) t
+ val empty : id -> ('kind,'diff,'info) t
val current_branch : ('k,'e,'i) t -> branch_name
val branches : ('k,'e,'i) t -> branch_name list
@@ -60,7 +60,7 @@ module type S = sig
val checkout : ('k,'e,'i) t -> branch_name -> ('k,'e,'i) t
val set_info : ('k,'e,'info) t -> id -> 'info -> ('k,'e,'info) t
- val get_info : ('k,'e,'info) t -> id -> 'info
+ val get_info : ('k,'e,'info) t -> id -> 'info option
val create_cluster : ('k,'e,'i) t -> id list -> ('k,'e,'i) t