From 62f42cab6b515139a08c3bbf78ceaf8467f1ae43 Mon Sep 17 00:00:00 2001 From: Elijah Mock <28277163+ekcom@users.noreply.github.com> Date: Thu, 23 Oct 2025 17:06:04 -0500 Subject: [PATCH] Fix minor typo in JDBC Core Classes documentation This commit adds a missing closing parenthesis in an example. Closes gh-35684 Signed-off-by: Elijah Mock <28277163+ekcom@users.noreply.github.com> --- framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc b/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc index 9fa68312f59..8dd2442558a 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc @@ -676,7 +676,7 @@ provides `firstName` and `lastName` properties, such as the `Actor` class from a [source,java,indent=0,subs="verbatim,quotes"] ---- this.jdbcClient.sql("insert into t_actor (first_name, last_name) values (:firstName, :lastName)") - .paramSource(new Actor("Leonor", "Watling") + .paramSource(new Actor("Leonor", "Watling")) .update(); ----