@@ -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
311311As `--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
470470it also prints to STDOUT when using the REPL.
471471
472472You 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
474474opinionated about logs being data, rather than human-readable strings. A
475475Duct log message consists of an *event*, a qualified keyword, and a map
476476of *event data*, which provides additional information.
0 commit comments