diff --git a/doc/special-syntax.md b/doc/special-syntax.md index 8eb1630..3e14241 100644 --- a/doc/special-syntax.md +++ b/doc/special-syntax.md @@ -21,7 +21,8 @@ of that sequence (as SQL parameters): > Note: you cannot provide a named parameter as the argument for `:array` because the generated SQL depends on the number of elements in the sequence, so the following throws an exception: -``` clj + +```clojure (sql/format {:select [[[:array :?tags] :arr]]} {:params {:tags [1 2 3]}}) ```