From bb42c1e00223644b6e8c96302e13a2c1a96badbc Mon Sep 17 00:00:00 2001 From: Vadym Lopatka Date: Sat, 15 Nov 2025 13:12:15 +0200 Subject: [PATCH] Introduction/Integrant: fix parenthesis in "ig keys" example --- docs/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.adoc b/docs/index.adoc index 2b1c701..a4175b6 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -670,7 +670,7 @@ definition: ---- (ns tutorial.print (:require [duct.logger :as log] - [integrant.core :as ig)) + [integrant.core :as ig])) (defmethod ig/init-key ::hello [_key {:keys [level logger name]}] (log/log logger level ::hello {:name name})) @@ -691,7 +691,7 @@ the `init-key` method (or function) opened. The return value from ---- (ns tutorial.print (:require [duct.logger :as log] - [integrant.core :as ig)) + [integrant.core :as ig])) (defmethod ig/init-key ::hello [_key {:keys [level logger name] :as opts}] (log/log logger level ::hello {:name name})