Skip to content

Commit 2bc03c2

Browse files
authored
chore(spell): skd -> sdk (#1037)
Fixes a small spell mistake in error of glue and s3tables catalog
1 parent edf3961 commit 2bc03c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/catalog/glue/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub(crate) fn from_aws_sdk_error<T>(error: aws_sdk_glue::error::SdkError<T>) ->
2525
where T: Debug {
2626
Error::new(
2727
ErrorKind::Unexpected,
28-
"Operation failed for hitting aws skd error".to_string(),
28+
"Operation failed for hitting aws sdk error".to_string(),
2929
)
3030
.with_source(anyhow!("aws sdk error: {:?}", error))
3131
}

crates/catalog/s3tables/src/catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ pub(crate) fn from_aws_sdk_error<T>(error: aws_sdk_s3tables::error::SdkError<T>)
501501
where T: std::fmt::Debug {
502502
Error::new(
503503
ErrorKind::Unexpected,
504-
"Operation failed for hitting aws skd error".to_string(),
504+
"Operation failed for hitting aws sdk error".to_string(),
505505
)
506506
.with_source(anyhow!("aws sdk error: {:?}", error))
507507
}

0 commit comments

Comments
 (0)