diff options
Diffstat (limited to 'Run/Que/Server.hs')
-rw-r--r-- | Run/Que/Server.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Run/Que/Server.hs b/Run/Que/Server.hs index 45ad1bc..792676d 100644 --- a/Run/Que/Server.hs +++ b/Run/Que/Server.hs @@ -216,7 +216,7 @@ modify f = ask >>= liftIO . atomically . flip STM.modifyTVar' f type Namespace = Text -- ^ housing for a set of que paths type Que = Go.Channel Quedata -- ^ a que is just a channel of bytes -type Quepath = [Text] -- ^ any path can serve as an identifier for a que +type Quepath = Text -- ^ any path can serve as an identifier for a que type Quedata = ByteString -- ^ any opaque data type Quebase = HashMap Quepath Que -- ^ a collection of ques |