diff options
Diffstat (limited to 'lib/sharder.mli')
| -rw-r--r-- | lib/sharder.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sharder.mli b/lib/sharder.mli index f5002ee..53ab280 100644 --- a/lib/sharder.mli +++ b/lib/sharder.mli @@ -44,7 +44,7 @@ module Shard : sig (** Set the status of the shard. *)
val set_status :
- status:Yojson.Safe.json ->
+ status:Yojson.Safe.t ->
shard ->
shard Deferred.t
@@ -69,13 +69,13 @@ end (** Calls {!Shard.set_status} for each shard registered with the sharder. *)
val set_status :
- status:Yojson.Safe.json ->
+ status:Yojson.Safe.t ->
t ->
Shard.shard list Deferred.t
-(** Like {!set_status} but takes a function with a {{!Shard.shard}shard} as its parameter and {{!Yojson.Safe.json}json} for its return. *)
+(** Like {!set_status} but takes a function with a {{!Shard.shard}shard} as its parameter and {{!Yojson.Safe.t}json} for its return. *)
val set_status_with :
- f:(Shard.shard -> Yojson.Safe.json) ->
+ f:(Shard.shard -> Yojson.Safe.t) ->
t ->
Shard.shard list Deferred.t
|