Skip to content

Commit aa24cf4

Browse files
authored
minor: fix typo (#1364)
## Which issue does this PR close? - minor typo fix ## What changes are included in this PR? ## Are these changes tested?
1 parent 0d5e5e8 commit aa24cf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/iceberg/src/transaction/snapshot.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ pub(crate) trait SnapshotProduceOperation: Send + Sync {
5050
pub(crate) struct DefaultManifestProcess;
5151

5252
impl ManifestProcess for DefaultManifestProcess {
53-
fn process_manifeset(&self, manifests: Vec<ManifestFile>) -> Vec<ManifestFile> {
53+
fn process_manifests(&self, manifests: Vec<ManifestFile>) -> Vec<ManifestFile> {
5454
manifests
5555
}
5656
}
5757

5858
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>;
6060
}
6161

6262
pub(crate) struct SnapshotProduceAction<'a> {
@@ -229,7 +229,7 @@ impl<'a> SnapshotProduceAction<'a> {
229229

230230
let mut manifest_files = vec![added_manifest];
231231
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);
233233
Ok(manifest_files)
234234
}
235235

0 commit comments

Comments
 (0)