File tree 1 file changed +3
-3
lines changed
crates/iceberg/src/transaction
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ pub(crate) trait SnapshotProduceOperation: Send + Sync {
50
50
pub ( crate ) struct DefaultManifestProcess ;
51
51
52
52
impl ManifestProcess for DefaultManifestProcess {
53
- fn process_manifeset ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > {
53
+ fn process_manifests ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > {
54
54
manifests
55
55
}
56
56
}
57
57
58
58
pub ( crate ) trait ManifestProcess : Send + Sync {
59
- fn process_manifeset ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > ;
59
+ fn process_manifests ( & self , manifests : Vec < ManifestFile > ) -> Vec < ManifestFile > ;
60
60
}
61
61
62
62
pub ( crate ) struct SnapshotProduceAction < ' a > {
@@ -229,7 +229,7 @@ impl<'a> SnapshotProduceAction<'a> {
229
229
230
230
let mut manifest_files = vec ! [ added_manifest] ;
231
231
manifest_files. extend ( existing_manifests) ;
232
- let manifest_files = manifest_process. process_manifeset ( manifest_files) ;
232
+ let manifest_files = manifest_process. process_manifests ( manifest_files) ;
233
233
Ok ( manifest_files)
234
234
}
235
235
You can’t perform that action at this time.
0 commit comments