aboutsummaryrefslogtreecommitdiff
path: root/ch15
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2025-08-06 16:56:18 +0200
committerJan Sucan <jan@jansucan.com>2025-08-06 16:56:18 +0200
commit805426a440ec8da572a31c42e51d23a757b11af6 (patch)
treed3e4fa068d59c6e35989326aa74d5da1efbb29de /ch15
parentf67da76fefe6953782c8f06b23123949c7be5903 (diff)
15_a_3: Add a comment
Diffstat (limited to 'ch15')
-rw-r--r--ch15/15_a_3.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/ch15/15_a_3.hs b/ch15/15_a_3.hs
index 951a7e4..ddabc17 100644
--- a/ch15/15_a_3.hs
+++ b/ch15/15_a_3.hs
@@ -6,6 +6,9 @@
-- I will use Map String [String] where the values are lists of values for a
-- urlencoded-key. Empty list indicates no values for the key.
+-- For simplicity, I will not handle the encoding of spaces, reserved
+-- characters, and non-ASCII characters in the urlencoded string.
+
{-- From examples/examples/ch10/Parse.hs and modified:
-- removed unused code,
-- made Parse an instance of Applicative,