File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ where
275
275
276
276
/*
277
277
* This is the API consumer-visible interface for paginated endpoints. We use
278
- * this solely to generate the schema. User-specified paratemers appear before
278
+ * this solely to generate the schema. User-specified parameters appear before
279
279
* pagination boilerplate.
280
280
*/
281
281
#[ derive( JsonSchema ) ]
@@ -285,7 +285,7 @@ struct SchemaPaginationParams<ScanParams> {
285
285
params : Option < ScanParams > ,
286
286
/** Maximum number of items returned by a single call */
287
287
limit : Option < NonZeroU32 > ,
288
- /** Token returned by previous call to retreive the subsequent page */
288
+ /** Token returned by previous call to retrieve the subsequent page */
289
289
page_token : Option < String > ,
290
290
}
291
291
Original file line number Diff line number Diff line change 232
232
{
233
233
"in" : " query" ,
234
234
"name" : " page_token" ,
235
- "description" : " Token returned by previous call to retreive the subsequent page" ,
235
+ "description" : " Token returned by previous call to retrieve the subsequent page" ,
236
236
"schema" : {
237
237
"nullable" : true ,
238
238
"type" : " string"
Original file line number Diff line number Diff line change 240
240
{
241
241
"in" : " query" ,
242
242
"name" : " page_token" ,
243
- "description" : " Token returned by previous call to retreive the subsequent page" ,
243
+ "description" : " Token returned by previous call to retrieve the subsequent page" ,
244
244
"schema" : {
245
245
"nullable" : true ,
246
246
"type" : " string"
Original file line number Diff line number Diff line change 40
40
{
41
41
"in" : " query" ,
42
42
"name" : " page_token" ,
43
- "description" : " Token returned by previous call to retreive the subsequent page" ,
43
+ "description" : " Token returned by previous call to retrieve the subsequent page" ,
44
44
"schema" : {
45
45
"nullable" : true ,
46
46
"type" : " string"
You can’t perform that action at this time.
0 commit comments