@@ -150,7 +150,7 @@ mod extend_anti {
150
150
}
151
151
152
152
impl < ' a , Key : Ord +' a , Val : Ord +' a , Tuple : Ord , Func : Fn ( & Tuple ) ->Key > ExtendAnti < ' a , Key , Val , Tuple , Func > {
153
- /// Constructs a ExtendWith from a relation and key and value function.
153
+ /// Constructs a ExtendAnti from a relation and key and value function.
154
154
pub fn from ( relation : & ' a Relation < ( Key , Val ) > , key_func : Func ) -> Self {
155
155
ExtendAnti {
156
156
relation,
@@ -195,7 +195,7 @@ mod filter_with {
195
195
}
196
196
197
197
impl < ' a , Key : Ord +' a , Val : Ord +' a , Tuple : Ord , Func : Fn ( & Tuple ) ->( Key , Val ) > FilterWith < ' a , Key , Val , Tuple , Func > {
198
- /// Constructs a ExtendWith from a relation and key and value function.
198
+ /// Constructs a FilterWith from a relation and key and value function.
199
199
pub fn from ( relation : & ' a Relation < ( Key , Val ) > , key_func : Func ) -> Self {
200
200
FilterWith {
201
201
relation,
@@ -236,7 +236,7 @@ mod filter_anti {
236
236
}
237
237
238
238
impl < ' a , Key : Ord +' a , Val : Ord +' a , Tuple : Ord , Func : Fn ( & Tuple ) ->( Key , Val ) > FilterAnti < ' a , Key , Val , Tuple , Func > {
239
- /// Constructs a ExtendWith from a relation and key and value function.
239
+ /// Constructs a FilterAnti from a relation and key and value function.
240
240
pub fn from ( relation : & ' a Relation < ( Key , Val ) > , key_func : Func ) -> Self {
241
241
FilterAnti {
242
242
relation,
0 commit comments