diff options
Diffstat (limited to 'portal/ws')
-rw-r--r-- | portal/ws/portal.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portal/ws/portal.ml b/portal/ws/portal.ml index 5afd725..5da3117 100644 --- a/portal/ws/portal.ml +++ b/portal/ws/portal.ml @@ -23,8 +23,8 @@ let domain_of_string (s : string) : domain = s let domain_to_string (s : domain) : string = s type t = { - mutable stream : (signal, async) stream; - mutable push : (signal, sync) stream option -> unit; + stream : (signal, async) stream; + push : (signal, sync) stream option -> unit; mutable _socket : socket; } |