Fork me on GitHub
#ring-swagger
<
2019-02-11
>
ben15:02:44

Is the Compojure wiki up-to-date? I’ve just tried testing the following destructuring example and it doesn’t return what I expected:

(compojure/GET "/test" [item] 
  (str "<h1>You don't win friends with" item "!</h1>"))


;; Expected
$ curl 
<h1>You don't win friends with salad!</h1>

;; Observed
$ curl 
<h1>You don't win friends with !</h1>
(from https://github.com/weavejester/compojure/wiki/Destructuring-Syntax)

ben15:02:08

(LMK if this is the wrong place to ask this)