From 17e8064e8a01386142086897a21ad070cfb666de Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Mon, 16 Dec 2024 13:33:52 -0600 Subject: [PATCH] fix code formatting --- content/guides/learn/namespaces.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/learn/namespaces.adoc b/content/guides/learn/namespaces.adoc index 3736df4d..2aa079b6 100644 --- a/content/guides/learn/namespaces.adoc +++ b/content/guides/learn/namespaces.adoc @@ -97,7 +97,7 @@ Similar to `:refer`, the `ns` macro has an `:import` clause (that is supported b (ns com.some-example.my-app2 (:import [java.util Date UUID] - [java.io File])) + [java.io File])) ---- This example imports the `Date` and `UUID` class from the `java.util` package and the `File` class from the `java.io` package.