Skip to content

Commit 8d9f3b2

Browse files
Vadym-Lopatkaweavejester
authored andcommitted
Fix typos
Closes #3, #2 and #1.
1 parent 9928832 commit 8d9f3b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ good practice to use the `duct.test/with-system` macro. This will
305305
(is (= "Hello World\nGoodbye.\n"
306306
(with-out-str
307307
(dt/with-system [_sys (dt/run)]
308-
(println "Goodbye.")))))
308+
(println "Goodbye."))))))
309309
----
310310

311311
As `--test` uses Kaocha under the hood, you can customize how the tests
@@ -337,7 +337,7 @@ your `deps.edn` file.
337337
[,clojure]
338338
----
339339
{:deps {org.clojure/clojure {:mvn/version "1.12.1"}
340-
org.duct-framework/main {:mvn/version "0.2.1"}
340+
org.duct-framework/main {:mvn/version "0.2.1"}}
341341
:aliases
342342
{:duct {:main-opts ["-m" "duct.main"]}
343343
:test {:extra-deps {org.duct-framework/test {:mvn/version "0.1.0"}}}}}
@@ -470,7 +470,7 @@ level. This is a high-priority level that should be used sparingly, as
470470
it also prints to STDOUT when using the REPL.
471471

472472
You may have noticed that we've replaced the `"Hello World"` string with
473-
a keyword and a map: `::name {:name "World"}`. This is because Duct is
473+
a keyword and a map: `::hello {:name "World"}`. This is because Duct is
474474
opinionated about logs being data, rather than human-readable strings. A
475475
Duct log message consists of an *event*, a qualified keyword, and a map
476476
of *event data*, which provides additional information.

0 commit comments

Comments
 (0)