We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b24260 commit 3b4f220Copy full SHA for 3b4f220
src/ring/util/codec.clj
@@ -23,7 +23,7 @@
23
(def ^:private string-replace-bug?
24
(= "x" (str/replace "x" #"." (fn [x] "$0"))))
25
26
-(defmacro fix-string-replace-bug [x]
+(defmacro ^:no-doc fix-string-replace-bug [x]
27
(if string-replace-bug?
28
`(double-escape ~x)
29
x))
@@ -78,7 +78,7 @@
78
[^String encoded]
79
(Base64/decodeBase64 (.getBytes encoded)))
80
81
-(defprotocol FormEncodeable
+(defprotocol ^:no-doc FormEncodeable
82
(form-encode* [x encoding]))
83
84
(extend-protocol FormEncodeable
0 commit comments