Skip to content

Commit ae7af0f

Browse files
kamalhmmp911de
authored andcommitted
Reference Docs: typo on firstname
Closes #514
1 parent 981fd11 commit ae7af0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/asciidoc/reference/r2dbc-repositories.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ interface ReactivePersonRepository extends ReactiveSortingRepository<Person, Lon
131131
Mono<Person> findFirstByLastname(String lastname); <7>
132132
}
133133
----
134-
<1> The method shows a query for all people with the given `lastname`. The query is derived by parsing the method name for constraints that can be concatenated with `And` and `Or`. Thus, the method name results in a query expression of `SELECT … FROM person WHERE firstname = :firstname`.
134+
<1> The method shows a query for all people with the given `firstname`. The query is derived by parsing the method name for constraints that can be concatenated with `And` and `Or`. Thus, the method name results in a query expression of `SELECT … FROM person WHERE firstname = :firstname`.
135135
<2> The method shows a query for all people with the given `firstname` once the `firstname` is emitted by the given `Publisher`.
136136
<3> Use `Pageable` to pass offset and sorting parameters to the database.
137137
<4> Find a single entity for the given criteria. It completes with `IncorrectResultSizeDataAccessException` on non-unique results.

0 commit comments

Comments
 (0)