summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2007-10-01 20:00:18 +0000
committerRich Hickey <richhickey@gmail.com>2007-10-01 20:00:18 +0000
commit23d0289148fa1755ec17cede2e200b32d4f33351 (patch)
tree576119fd5396cc0fe0c2777c1b4cdce61a5549ca
parent158dd414059df37c4166a90686d75ac5eaca2521 (diff)
doc update
-rw-r--r--clojure.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/clojure.markdown b/clojure.markdown
index b0b19f2f..8bfff95d 100644
--- a/clojure.markdown
+++ b/clojure.markdown
@@ -10,7 +10,7 @@
#Clo*j*ure
## A Dynamic Programming Language for the JVM
-Copyright © Rich Hickey. All rights reserved.
+Copyright (c) Rich Hickey. All rights reserved.
The use and distribution terms for this software are covered by the [Common Public License 1.0][cpl], which can be found in the file CPL.TXT at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.
@@ -70,7 +70,7 @@ In the directory in which you expanded `clojure.zip`, run:
java -cp clojure.jar clojure.lang.Compiler src/boot.clj
</code></pre>
-This will bring up a simple read-eval-print loop (REPL). Much of Clojure is defined in Clojure itself (in the `boot.clj` file included in the `src` directory of distribution), so the command-line argument is needed to do is load it.
+This will bring up a simple read-eval-print loop (REPL). Much of Clojure is defined in Clojure itself (in the `boot.clj` file included in the `src` directory of distribution), so the command-line argument is needed to load it.
When boot.clj is loaded you will have the language as described herein fully available.