Skip to content

Commit c8dadf3

Browse files
authored
Merge pull request #718 from gaverhae/master
tools_build: inconsistent spelling of "path[s] roots"
2 parents 866f642 + 5b069f3 commit c8dadf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/guides/tools_build.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ So executing `clj -T:build jar` will use an effective classpath here of:
4747
* org.clojure/clojure (from the root deps.edn `:deps`) and transitive deps
4848
* org.clojure/tools.build (from the `:build` alias `:deps`) and transitive deps
4949

50-
The `:ns-default` specifies the default Clojure namespace to find the function specified on the classpath. Because the only local path is the default `"."`, we should expect to find the build program at `build.clj` in the root of our project. Note that the path roots (via the `:build` alias `:paths`) and the namespace of the build program itself relative to those paths roots are fully under your control. You may wish to put them in a subdirectory of your project too.
50+
The `:ns-default` specifies the default Clojure namespace to find the function specified on the classpath. Because the only local path is the default `"."`, we should expect to find the build program at `build.clj` in the root of our project. Note that the path roots (via the `:build` alias `:paths`) and the namespace of the build program itself relative to those path roots are fully under your control. You may wish to put them in a subdirectory of your project too.
5151

5252
And then finally, on the command line we specify the function to run in the build, here `jar`. That function will be executed in the `build` namespace, and passed a map built using the same arg passing style as `-X` - args are provided as alternating keys and values.
5353

@@ -227,7 +227,7 @@ For example, consider a parameterization that includes an extra set of dev resou
227227
params))
228228
----
229229

230-
The other aspects of deps.edn and invocation remain the same.
230+
The other aspects of deps.edn and invocation remain the same.
231231

232232
Invocation that activates :dev environment will look like this:
233233

0 commit comments

Comments
 (0)