From ee5f6506cb03e2bed7d9dbdd65a0ff40b0e6d891 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Tue, 2 Jan 2024 17:40:44 -0600 Subject: [PATCH] cleanup --- content/reference/evaluation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/reference/evaluation.adoc b/content/reference/evaluation.adoc index 25bd0e62..508c3ca9 100644 --- a/content/reference/evaluation.adoc +++ b/content/reference/evaluation.adoc @@ -26,7 +26,7 @@ A Symbol is _resolved_: * If it is namespace-qualified: . If the symbol names a global public var, the value is the value of the binding of that var. -. Since Clojure 1.12, if the namespace resolves to a class in the current namespace, and the symbol name is a static method, the value is a Clojure function that invokes the static member. +. Since Clojure 1.12, if the namespace resolves to a class in the current namespace, and the symbol name is a static method, the value is a Clojure function that invokes the static method. . Since Clojure 1.12, if the namespace starts with `.` and after resolves to a class in the current namespace, and the symbol name is an instance method, the value is a Clojure function that invokes the instance method. . Else it is an error. * If it is package-qualified, the value is the Java class named by the symbol. It is an error if there is no Class named by the symbol. Since Clojure 1.12, a class name or primitive name ending with one or more `pass:[*]`s resolves to an array class.