Fix typo in documentation example.

Closes #1782
This commit is contained in:
Jens Schauder
2024-04-29 09:57:09 +02:00
parent 792d773cbd
commit a0a01a70b6

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