Skip to content

Commit c6fe015

Browse files
kamalhmmp911de
authored andcommitted
Reference Docs: typo on firstname
Closes #514
1 parent 8253f23 commit c6fe015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ interface ReactivePersonRepository extends ReactiveSortingRepository<Person, Lon
108108
Mono<Person> findFirstByLastname(String lastname); <7>
109109
}
110110
----
111-
<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`.
111+
<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`.
112112
<2> The method shows a query for all people with the given `firstname` once the `firstname` is emitted by the given `Publisher`.
113113
<3> Use `Pageable` to pass offset and sorting parameters to the database.
114114
<4> Find a single entity for the given criteria. It completes with `IncorrectResultSizeDataAccessException` on non-unique results.

0 commit comments

Comments
 (0)