diff --git a/src/HTTPure/Query.purs b/src/HTTPure/Query.purs index a7f53ab..a2d539e 100644 --- a/src/HTTPure/Query.purs +++ b/src/HTTPure/Query.purs @@ -16,9 +16,9 @@ import Node.HTTP as HTTP -- | parameter in the request. For any query parameters that don't have values -- | (`/some/path?query`), the value in the `StrMap` for that parameter will be -- | the string `"true"`. Note that this type has an implementation of `Lookup` --- | for `String` keys defined by `lookpStrMap` in `Lookup.purs` because --- | `lookupStrMap` is defined for any `StrMap` of `Monoids`. So you can do --- | something like `query !! "foo"` to get the value of the query parameter +-- | for `String` keys defined by `lookpStrMap` in [Lookup.purs](./Lookup.purs) +-- | because `lookupStrMap` is defined for any `StrMap` of `Monoids`. So you can +-- | do something like `query !! "foo"` to get the value of the query parameter -- | "foo". type Query = StrMap.StrMap String