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