summaryrefslogtreecommitdiff
path: root/doc/up_and_running.md
diff options
context:
space:
mode:
authorGarrett Hopper <garrett@garretthopper.com>2018-03-07 14:16:37 -0600
committerTianxiang Xiong <tianxiang.xiong@gmail.com>2018-03-07 12:19:48 -0800
commit18ed7615245a3ece51215d3ddc9332feb58971f2 (patch)
tree37c85b69977a56675b773b2a6a5d6e346567c218 /doc/up_and_running.md
parentcd57feb92055ec5ed49cc83b4b071bdc57f9fe3e (diff)
Update up_and_running.md `built.boot` -> `build.boot`
Diffstat (limited to 'doc/up_and_running.md')
-rw-r--r--doc/up_and_running.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/up_and_running.md b/doc/up_and_running.md
index ea4e7c9e..ad1b2b64 100644
--- a/doc/up_and_running.md
+++ b/doc/up_and_running.md
@@ -83,7 +83,7 @@ ClojureScript support relies on the [piggieback][] nREPL middleware being
present in your REPL session.
Add the following dependencies to your project (`project.clj` in Leiningen based project
-or `built.boot` in Boot project):
+or `build.boot` in Boot project):
```clojure
[com.cemerick/piggieback "0.2.1"]
@@ -97,7 +97,7 @@ in `project.clj`:
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
```
-or in `built.boot`:
+or in `build.boot`:
```clojure
(task-options!
repl {:middleware '[cemerick.piggieback/wrap-cljs-repl]})