Skip to content

Commit 1a869ad

Browse files
committed
Clean up readme
1 parent b617559 commit 1a869ad

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,14 @@ would type:
9696

9797
```bash
9898
bb new-test clojure.core/foo
99-
;; or
99+
# or
100100
bb new-test foo
101+
102+
# For other clojure namespaces, specify the ns, like:
103+
bb new-test clojure.string/includes?
101104
```
102105

103-
will create a new file named `foo.cljc` in the test namespace. The
104-
test file will look like the following:
106+
The test file will look like the following:
105107

106108
```
107109
(ns clojure.core-test.foo
@@ -123,7 +125,7 @@ test file will look like the following:
123125
Simply fill in test assertions and you're off and running.
124126

125127
Note: `new-test` takes care of converting various characters that
126-
might be problematic in file names to expanded versions. For instance
128+
might be problematic in file names to expanded versions. For instance,
127129
"?" is converted to "qmark" and "*" is converted to
128130
"star". Thus, you should always provide the name of the `clojure.core`
129131
symbol you want to test, not the file name or other name. You may need

0 commit comments

Comments
 (0)