Browse Source

Fix typo in documentation example.

Closes #1782
pull/1783/head
Jens Schauder 2 years ago committed by Mark Paluch
parent
commit
500f504496
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 2
      src/main/antora/modules/ROOT/pages/jdbc/query-methods.adoc

2
src/main/antora/modules/ROOT/pages/jdbc/query-methods.adoc

@ -178,7 +178,7 @@ Such a SpEL expression will get replaced with a bind variable and the variable g @@ -178,7 +178,7 @@ Such a SpEL expression will get replaced with a bind variable and the variable g
.Use a SpEL in a query
[source,java]
----
@Query("SELECT * FROM person WHERE id = :#{person.id}")
@Query("SELECT * FROM person WHERE id = :#{#person.id}")
Person findWithSpEL(PersonRef person);
----

Loading…
Cancel
Save