diff options
| author | Adelyn Breelove <[email protected]> | 2019-02-04 13:21:52 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-02-04 13:21:52 -0700 |
| commit | 62b7689d0af62daee569e7d8ab3c641af756e6ef (patch) | |
| tree | fb0777298a29ffb1f92c79350681f1fe55248ae5 /lib/sharder.mli | |
| parent | Opt to never force close unix fd before writer is flushed (diff) | |
| download | disml-62b7689d0af62daee569e7d8ab3c641af756e6ef.tar.xz disml-62b7689d0af62daee569e7d8ab3c641af756e6ef.zip | |
Update yojson to 1.6.0
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
|