ring-swagger

ben 2019-02-11T15:13:06.000200Z

@ben606 has joined the channel

ben 2019-02-11T15:16:44.002300Z

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)

ben 2019-02-11T15:17:08.002600Z

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