Skip to content

Commit 42fba47

Browse files
authored
Merge pull request #13 from splitgraph/gcs-scheme-alignement
feat: align GCS scheme name with other libs
2 parents 07b6f6c + 493f58f commit 42fba47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • iceberg-rust/src/object_store

iceberg-rust/src/object_store/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Display for Bucket<'_> {
3131
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
3232
match self {
3333
Bucket::S3(s) => write!(f, "s3://{}", s),
34-
Bucket::GCS(s) => write!(f, "gcs://{}", s),
34+
Bucket::GCS(s) => write!(f, "gs://{}", s),
3535
Bucket::Local => write!(f, ""),
3636
}
3737
}

0 commit comments

Comments
 (0)