Fix typo in documentation example.

Closes #1782
This commit is contained in:
Jens Schauder
2024-04-29 09:57:09 +02:00
committed by Mark Paluch
parent 21e8d9a4fa
commit 500f504496

View File

@@ -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);
----