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/models/channel | |
| 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/models/channel')
| -rw-r--r-- | lib/models/channel/channel_t.ml | 2 | ||||
| -rw-r--r-- | lib/models/channel/channel_t.mli | 2 | ||||
| -rw-r--r-- | lib/models/channel/message/reaction.mli | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/models/channel/channel_t.ml b/lib/models/channel/channel_t.ml index b02fa31..1705bdf 100644 --- a/lib/models/channel/channel_t.ml +++ b/lib/models/channel/channel_t.ml @@ -1,6 +1,6 @@ open Core
-exception Invalid_channel of Yojson.Safe.json
+exception Invalid_channel of Yojson.Safe.t
type group = {
id: Channel_id_t.t;
diff --git a/lib/models/channel/channel_t.mli b/lib/models/channel/channel_t.mli index 711b319..30c90a5 100644 --- a/lib/models/channel/channel_t.mli +++ b/lib/models/channel/channel_t.mli @@ -1,4 +1,4 @@ -exception Invalid_channel of Yojson.Safe.json
+exception Invalid_channel of Yojson.Safe.t
(** Represents a Group channel object. *)
type group = {
diff --git a/lib/models/channel/message/reaction.mli b/lib/models/channel/message/reaction.mli index 38343cb..20ab436 100644 --- a/lib/models/channel/message/reaction.mli +++ b/lib/models/channel/message/reaction.mli @@ -1,6 +1,6 @@ include module type of Reaction_t -(* val delete : Reaction_t.t -> Yojson.Safe.json Deferred.Or_error.t +(* val delete : Reaction_t.t -> Yojson.Safe.t Deferred.Or_error.t val get_users : Reaction_t.t -> int -> User_t.t list Deferred.Or_error.t val get_users_after : Reaction_t.t -> Snowflake.t -> int -> User_t.t list Deferred.Or_error.t val get_users_before : Reaction_t.t -> Snowflake.t -> int -> User_t.t list Deferred.Or_error.t *)
\ No newline at end of file |