Skip to content

Commit c566939

Browse files
committed
Merge pull request #7 from Vadym-Lopatka/patch-6
Fix missing parenthesis typo
2 parents 3e6757d + 0dfaef7 commit c566939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ definition:
670670
----
671671
(ns tutorial.print
672672
(:require [duct.logger :as log]
673-
[integrant.core :as ig))
673+
[integrant.core :as ig]))
674674
675675
(defmethod ig/init-key ::hello [_key {:keys [level logger name]}]
676676
(log/log logger level ::hello {:name name}))
@@ -691,7 +691,7 @@ the `init-key` method (or function) opened. The return value from
691691
----
692692
(ns tutorial.print
693693
(:require [duct.logger :as log]
694-
[integrant.core :as ig))
694+
[integrant.core :as ig]))
695695
696696
(defmethod ig/init-key ::hello [_key {:keys [level logger name] :as opts}]
697697
(log/log logger level ::hello {:name name})

0 commit comments

Comments
 (0)