Skip to content

Commit 8e723a6

Browse files
mfikesswannodette
authored andcommitted
CLJS-2480: Periods at end of analyzer warnings
1 parent 1d78451 commit 8e723a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/clojure/cljs/analyzer.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@
345345

346346
(defmethod error-message :fn-deprecated
347347
[warning-type info]
348-
(str (-> info :fexpr :info :name) " is deprecated."))
348+
(str (-> info :fexpr :info :name) " is deprecated"))
349349

350350
(defmethod error-message :undeclared-ns-form
351351
[warning-type info]
@@ -412,7 +412,7 @@
412412

413413
(defmethod error-message :invalid-arithmetic
414414
[warning-type info]
415-
(str (:js-op info) ", all arguments must be numbers, got " (:types info) " instead."))
415+
(str (:js-op info) ", all arguments must be numbers, got " (:types info) " instead"))
416416

417417
(defmethod error-message :invalid-array-access
418418
[warning-type {:keys [name types]}]

0 commit comments

Comments
 (0)