Skip to content

Commit 21c990b

Browse files
authored
Merge pull request #114 from clojureverse/oxalorg/docs-require-use
docs: change `use` to `require` in kaocha example
2 parents 4723728 + 8e9b1cf commit 21c990b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ You can run the tests by running the following command from the project root dir
102102
You can also run tests from the repl. For example to run the tests inside `test/clojurians_log/views_test.clj`:
103103

104104
```
105-
(use 'kaocha.repl)
106-
(run 'clojurians-log.views-test)
105+
(require '[kaocha.repl :as k])
106+
(k/run 'clojurians-log.views-test)
107107
```
108108

109109
## License

0 commit comments

Comments
 (0)