Skip to content

Commit eae472b

Browse files
committed
Polishing.
1 parent 6d19e96 commit eae472b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/asciidoc/repository-resources.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public interface OrderRepository extends CrudRepository<Order, Long> { }
1515

1616
For this repository, Spring Data REST exposes a collection resource at `/orders`. The path is derived from the uncapitalized, pluralized, simple class name of the domain class being managed. It also exposes an item resource for each of the items managed by the repository under the URI template `/orders/{id}`.
1717

18-
By default the HTTP methods to interact with these resources map to the according methods of `CrudRepository`. Read more on that in the sections on <<repository-resources.collection-resource,collection resources>> and <<repository-resources.item-resource,item resources>>.
18+
By default the HTTP methods to interact with these resources map to the according methods of `CrudRepository`. Read more on that in the sections on <<repository-resources.collection-resource, collection resources>> and <<repository-resources.item-resource, item resources>>.
1919

2020
[[repository-resources.methods]]
2121
=== Repository methods exposure
@@ -92,7 +92,7 @@ If the repository is a paging repository we include the pagination links if nece
9292

9393
===== Methods used for invocation
9494

95-
The following methods are used if present (decending order):
95+
The following methods are used if present (descending order):
9696

9797
- `findAll(Pageable)`
9898
- `findAll(Sort)`
@@ -134,7 +134,7 @@ The `HEAD` method returns whether the collection resource is available. It has n
134134

135135
===== Methods used for invocation
136136

137-
The following methods are used if present (decending order):
137+
The following methods are used if present (descending order):
138138

139139
- `findAll(Pageable)`
140140
- `findAll(Sort)`
@@ -153,7 +153,7 @@ This behavior can be overridden by configuring `RepositoryRestConfiguration.setR
153153

154154
===== Methods used for invocation
155155

156-
The following methods are used if present (decending order):
156+
The following methods are used if present (descending order):
157157

158158
- `save(…)`
159159

@@ -189,7 +189,7 @@ The `GET` method returns a single entity.
189189

190190
===== Methods used for invocation
191191

192-
The following methods are used if present (decending order):
192+
The following methods are used if present (descending order):
193193

194194
- `findById(…)`
195195

@@ -219,7 +219,7 @@ The `HEAD` method returns whether the item resource is available. It has no stat
219219

220220
===== Methods used for invocation
221221

222-
The following methods are used if present (decending order):
222+
The following methods are used if present (descending order):
223223

224224
- `findById(…)`
225225

@@ -236,7 +236,7 @@ This behavior can be overridden by configuring `RepositoryRestConfiguration.setR
236236

237237
===== Methods used for invocation
238238

239-
The following methods are used if present (decending order):
239+
The following methods are used if present (descending order):
240240

241241
- `save(…)`
242242

@@ -262,7 +262,7 @@ The `PATCH` method is similar to the `PUT` method but partially updates the reso
262262

263263
===== Methods used for invocation
264264

265-
The following methods are used if present (decending order):
265+
The following methods are used if present (descending order):
266266

267267
- `save(…)`
268268

0 commit comments

Comments
 (0)