diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-03 15:35:36 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-03 15:36:03 +0200 |
commit | d250a95c4685d933ed23a8548054a96f6a3d3ff2 (patch) | |
tree | dd6ea54b26171a856eda584bfd0b7e7cc5060318 | |
parent | 2094d68053f606996b2f30a62a2ae4af06851ab6 (diff) | |
download | cuirass-d250a95c4685d933ed23a8548054a96f6a3d3ff2.tar cuirass-d250a95c4685d933ed23a8548054a96f6a3d3ff2.tar.gz |
http: Fix typo in request-parameters.
This is a follow-up of 2094d68053f606996b2f30a62a2ae4af06851ab6.
* src/cuirass/http.scm (request-parameters): Fix typo.
-rw-r--r-- | src/cuirass/http.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm index de27ea5..fac675f 100644 --- a/src/cuirass/http.scm +++ b/src/cuirass/http.scm @@ -156,7 +156,7 @@ Hydra format." ('nr (string->number param)) (_ param))) params))) - (_ #f))) + (_ params))) '() (string-split query #\&)) '()))) |