Skip to content

Commit 104083c

Browse files
authored
Cleanup README (#757)
1 parent fc93f9a commit 104083c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This is a set of tests for Clojure's core standard library. Its purpose is not
33
only to draw clear boundaries around Clojure JVM's behavior, but also to serve
44
as a compliance suite for other Clojure dialects.
55

6-
Currently, this project is owned by jank, the native Clojure dialect. As we
6+
Currently, this project is owned by [`jank`](https://github.com/jank-lang/jank), the native Clojure dialect. As we
77
build it up and prove jank's readiness, we also create value for the rest of the
88
Clojure community. As it currently stands, jank isn't able to run `clojure.test`
99
yet, so we're just focusing on building out the test cases for now.
@@ -109,9 +109,9 @@ The test file will look like the following:
109109
```clojure
110110
(ns clojure.core-test.foo
111111
(:require [clojure.test :as t :refer [deftest testing is are]]
112-
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))
112+
[clojure.core-test.portability #?(:cljs :refer-macros :default :refer) [when-var-exists]]))
113113

114-
(when-var-exists clojure.core/foo
114+
(when-var-exists foo
115115
(deftest test-foo
116116
;; `testing` sections are optional, depending on how you want to
117117
;; structure your tests. If you have a lot of tests and they group
@@ -143,4 +143,4 @@ The complete set of conversions of characters to names is:
143143
- "<" -> "lt"
144144
- ">" -> "gt"
145145
- "=" -> "eq"
146-
- "%" -> "percent"))
146+
- "%" -> "percent"

0 commit comments

Comments
 (0)