@@ -498,30 +498,30 @@ pub struct TasksQuery<'a, T> {
498
498
impl < ' a , T > TasksQuery < ' a , T > {
499
499
pub fn with_index_uids < ' b > (
500
500
& ' b mut self ,
501
- index_uid : impl IntoIterator < Item = & ' a str > ,
501
+ index_uids : impl IntoIterator < Item = & ' a str > ,
502
502
) -> & ' b mut TasksQuery < ' a , T > {
503
- self . index_uids = Some ( index_uid . into_iter ( ) . collect ( ) ) ;
503
+ self . index_uids = Some ( index_uids . into_iter ( ) . collect ( ) ) ;
504
504
self
505
505
}
506
506
pub fn with_statuses < ' b > (
507
507
& ' b mut self ,
508
- status : impl IntoIterator < Item = & ' a str > ,
508
+ statuses : impl IntoIterator < Item = & ' a str > ,
509
509
) -> & ' b mut TasksQuery < ' a , T > {
510
- self . statuses = Some ( status . into_iter ( ) . collect ( ) ) ;
510
+ self . statuses = Some ( statuses . into_iter ( ) . collect ( ) ) ;
511
511
self
512
512
}
513
513
pub fn with_types < ' b > (
514
514
& ' b mut self ,
515
- task_type : impl IntoIterator < Item = & ' a str > ,
515
+ task_types : impl IntoIterator < Item = & ' a str > ,
516
516
) -> & ' b mut TasksQuery < ' a , T > {
517
- self . task_types = Some ( task_type . into_iter ( ) . collect ( ) ) ;
517
+ self . task_types = Some ( task_types . into_iter ( ) . collect ( ) ) ;
518
518
self
519
519
}
520
520
pub fn with_uids < ' b > (
521
521
& ' b mut self ,
522
- index_uid : impl IntoIterator < Item = & ' a u32 > ,
522
+ uids : impl IntoIterator < Item = & ' a u32 > ,
523
523
) -> & ' b mut TasksQuery < ' a , T > {
524
- self . uids = Some ( index_uid . into_iter ( ) . collect ( ) ) ;
524
+ self . uids = Some ( uids . into_iter ( ) . collect ( ) ) ;
525
525
self
526
526
}
527
527
pub fn with_before_enqueued_at < ' b > (
0 commit comments