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 a427ecc5fe93..c780bac448a7 100644 --- a/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc @@ -759,7 +759,7 @@ With a required single object result: [source,java,indent=0,subs="verbatim,quotes"] ---- - Actor actor = this.jdbcClient.sql("select first_name, last_name from t_actor where id = ?", + Actor actor = this.jdbcClient.sql("select first_name, last_name from t_actor where id = ?") .param(1212L); .query(Actor.class) .single(); @@ -769,7 +769,7 @@ With a `java.util.Optional` result: [source,java,indent=0,subs="verbatim,quotes"] ---- - Optional actor = this.jdbcClient.sql("select first_name, last_name from t_actor where id = ?", + Optional actor = this.jdbcClient.sql("select first_name, last_name from t_actor where id = ?") .param(1212L); .query(Actor.class) .optional();