From 09c65d9d99be2b1cb9eddfe914814c8418296668 Mon Sep 17 00:00:00 2001 From: Sanghyuk Jung Date: Sat, 25 Jul 2026 14:04:23 +0900 Subject: [PATCH] Remove duplicated "the" Signed-off-by: Sanghyuk Jung --- src/main/antora/modules/ROOT/pages/paging-and-sorting.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/antora/modules/ROOT/pages/paging-and-sorting.adoc b/src/main/antora/modules/ROOT/pages/paging-and-sorting.adoc index 9f3525871..17d6482e9 100644 --- a/src/main/antora/modules/ROOT/pages/paging-and-sorting.adoc +++ b/src/main/antora/modules/ROOT/pages/paging-and-sorting.adoc @@ -133,7 +133,7 @@ This feature lets you map optional buttons on the screen to these hypermedia con Spring Data REST recognizes sorting parameters that use the repository sorting support. -To have your results sorted on a particular property, add a `sort` URL parameter with the name of the property on which you want to sort the results. You can control the direction of the sort by appending a comma (`,`) to the the property name plus either `asc` or `desc`. The following would use the `findByNameStartsWith` query method defined on the `PersonRepository` for all `Person` entities with names starting with the letter "`K`" and add sort data that orders the results on the `name` property in descending order: +To have your results sorted on a particular property, add a `sort` URL parameter with the name of the property on which you want to sort the results. You can control the direction of the sort by appending a comma (`,`) to the property name plus either `asc` or `desc`. The following would use the `findByNameStartsWith` query method defined on the `PersonRepository` for all `Person` entities with names starting with the letter "`K`" and add sort data that orders the results on the `name` property in descending order: ==== ----