Skip to content

Commit 21c2da3

Browse files
committed
Correct capitalisation of "JavaScript".
1 parent 86fd8fa commit 21c2da3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Hello, this is my attempt at a very concise guide to ClojureScript's syntax!
44
ClojureScript is a new language for front-end web development. It compiles to
5-
Javascript for use in the browser.
5+
JavaScript for use in the browser.
66

7-
ClojureScript is fundamentally different from Javascript and other
7+
ClojureScript is fundamentally different from JavaScript and other
88
compile-to-JS languages like Dart, CoffeeScript, and LiveScript. It uses a
99
more powerful yet simpler syntax, it employs useful defaults to combat the "new
1010
spaghetti code" that is mutatable stateful objects, and it supports a lot of UI
@@ -209,7 +209,7 @@ share a significant subset with each other.)
209209
1. Reading [Clojure Functional Programming](http://clojure.org/functional_programming)
210210
1. Thumbing through [Clojure Core API](http://clojure.github.io/clojure/clojure.core-api.html)
211211
1. Reading [ClojureScript - Differences from Clojure - Host Interop](https://github.com/clojure/clojurescript/wiki/Differences-from-Clojure#wiki-host-interop) for accessing javascript properties like `(.-Infinity js/window)` and functions like `(.sqrt js/Math 25)`.
212-
1. Reading [Javascript to ClojureScript synonyms](http://kanaka.github.io/clojurescript/web/synonym.html)
212+
1. Reading [JavaScript to ClojureScript synonyms](http://kanaka.github.io/clojurescript/web/synonym.html)
213213
1. Experimenting in `lein repl` for Clojure REPL.
214214
1. Experimenting in <http://clojurescript.net/> for ClojureScript REPL with a browser context.
215215
1. Reading docstrings of functions I encounter with `(doc <funcname>)` in REPL.

0 commit comments

Comments
 (0)