From 377944502dd1535521af470c5f8859aa18fab888 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 19 Aug 2022 15:31:18 +0300 Subject: [PATCH] Correct typos in QueryParams.hs --- src/PostgREST/Request/QueryParams.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PostgREST/Request/QueryParams.hs b/src/PostgREST/Request/QueryParams.hs index 9dc661ff8..bdbb92357 100644 --- a/src/PostgREST/Request/QueryParams.hs +++ b/src/PostgREST/Request/QueryParams.hs @@ -1,6 +1,6 @@ -- | -- Module : PostgREST.Request.QueryParams --- Description : Parser for PostgREST Query paramters +-- Description : Parser for PostgREST Query parameters -- -- This module is in charge of parsing all the querystring values in an url, e.g. -- the select, id, order in `/projects?select=id,name&id=eq.1&order=id,name.desc`. @@ -105,7 +105,7 @@ data QueryParams = -- | -- Parse query parameters from a query string like "id=eq.1&select=name". -- --- The canonical representation of the query string has paramters sorted alphabetically: +-- The canonical representation of the query string has parameters sorted alphabetically: -- -- >>> qsCanonical <$> parse "a=1&c=3&b=2&d" -- Right "a=1&b=2&c=3&d="