This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch fix/javadoc-link-typo in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 2c25039a66d2193d96a029d2eca35380f61d01dc Author: James Fredley <[email protected]> AuthorDate: Sat Feb 28 18:34:10 2026 -0500 fix: correct malformed Javadoc link tag in DatastoreServiceMethodInvokingFactoryBean Change {#link MethodInvokingFactoryBean} to {@link MethodInvokingFactoryBean} so generated docs render the link correctly. Assisted-by: Claude Code <[email protected]> --- .../mapping/config/DatastoreServiceMethodInvokingFactoryBean.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grails-datastore-core/src/main/groovy/org/grails/datastore/mapping/config/DatastoreServiceMethodInvokingFactoryBean.groovy b/grails-datastore-core/src/main/groovy/org/grails/datastore/mapping/config/DatastoreServiceMethodInvokingFactoryBean.groovy index e59393c918..5e3a002dc4 100644 --- a/grails-datastore-core/src/main/groovy/org/grails/datastore/mapping/config/DatastoreServiceMethodInvokingFactoryBean.groovy +++ b/grails-datastore-core/src/main/groovy/org/grails/datastore/mapping/config/DatastoreServiceMethodInvokingFactoryBean.groovy @@ -32,7 +32,7 @@ import org.grails.datastore.mapping.core.Datastore import org.grails.datastore.mapping.services.Service /** - * Variant of {#link MethodInvokingFactoryBean} which returns the correct data service type instead of {@code java.lang.Object} so the Autowire with type works correctly. + * Variant of {@link MethodInvokingFactoryBean} which returns the correct data service type instead of {@code java.lang.Object} so the Autowire with type works correctly. */ @Internal @CompileStatic
