Skip to content

Commit 54d05bb

Browse files
committed
typo
1 parent 8ae47f5 commit 54d05bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/guides/faq-js.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ which is _as if_ you had written:
155155

156156
[source,clojure]
157157
----
158-
(def my-date
158+
(def my-date
159159
(let [d (new Date)]
160160
(.setDate d 7)
161161
(.setMonth d 7)
@@ -267,7 +267,7 @@ Clojure libraries use them to embed HTML templating in the language:
267267
[source,clojure]
268268
----
269269
[:div.text-right
270-
[:span "Click here: "]
270+
[:span "Click here: "]
271271
[:button {:class "btn" :on-click #(do something)} "Click me!"]]
272272
----
273273

@@ -284,7 +284,7 @@ immediately if you've made a mistake with parentheses.
284284
**<<faq-js#can-i-call-javascript-from-clojurescript,Can I call JavaScript from ClojureScript?>>**
285285

286286
ClojureScript has very good JavaScript interoperability. ClojureScript
287-
function are regular JavaScript functions. The language provides
287+
functions are regular JavaScript functions. The language provides
288288
primitives to access native browser objects, access and set properties
289289
of objects, create and manipulate JavaScript objects and arrays, and
290290
call any JavaScript function or method.

0 commit comments

Comments
 (0)