Skip to content

Commit 3b4f220

Browse files
committed
Add :no-doc metadata to internal vars
1 parent 2b24260 commit 3b4f220

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ring/util/codec.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
(def ^:private string-replace-bug?
2424
(= "x" (str/replace "x" #"." (fn [x] "$0"))))
2525

26-
(defmacro fix-string-replace-bug [x]
26+
(defmacro ^:no-doc fix-string-replace-bug [x]
2727
(if string-replace-bug?
2828
`(double-escape ~x)
2929
x))
@@ -78,7 +78,7 @@
7878
[^String encoded]
7979
(Base64/decodeBase64 (.getBytes encoded)))
8080

81-
(defprotocol FormEncodeable
81+
(defprotocol ^:no-doc FormEncodeable
8282
(form-encode* [x encoding]))
8383

8484
(extend-protocol FormEncodeable

0 commit comments

Comments
 (0)