From 5f48db598dea363e990d58215fc88276d7a494af Mon Sep 17 00:00:00 2001 From: kovan Date: Sat, 14 Mar 2026 20:05:44 +0100 Subject: [PATCH] Qualify Java methods vs functions statement Change "Can't store them or pass them as arguments" to "Can't be stored in vars or passed as arguments directly" to be more precise. Java methods can be wrapped in functions and then stored/passed, which the next bullet already notes. Fixes #715 --- content/guides/learn/functions.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/learn/functions.adoc b/content/guides/learn/functions.adoc index e52c168a..4e88e9b3 100644 --- a/content/guides/learn/functions.adoc +++ b/content/guides/learn/functions.adoc @@ -284,7 +284,7 @@ Below is a summary of calling conventions for calling into Java from Clojure: === Java Methods vs Functions * Java methods are not Clojure functions -* Can't store them or pass them as arguments +* Can't be stored in vars or passed as arguments directly * Can wrap them in functions when necessary [source,clojure]