Skip to content

Commit cda4a0c

Browse files
authored
chore: fix typo in FileIO Schemes (apache#653)
* fix typo * fix typo
1 parent af9609d commit cda4a0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/iceberg/src/io/file_io.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ use crate::{Error, ErrorKind, Result};
4040
/// | Local file system | `storage-fs` | `file` |
4141
/// | Memory | `storage-memory` | `memory` |
4242
/// | S3 | `storage-s3` | `s3`, `s3a`|
43-
/// | GCS | `storage-gcs` | `gs` |
43+
/// | GCS | `storage-gcs` | `gcs` |
4444
#[derive(Clone, Debug)]
4545
pub struct FileIO {
4646
inner: Arc<Storage>,

crates/iceberg/src/io/storage.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ impl Storage {
164164
"memory" => Ok(Scheme::Memory),
165165
"file" | "" => Ok(Scheme::Fs),
166166
"s3" | "s3a" => Ok(Scheme::S3),
167-
"gs" => Ok(Scheme::Gcs),
167+
"gcs" => Ok(Scheme::Gcs),
168168
s => Ok(s.parse::<Scheme>()?),
169169
}
170170
}

0 commit comments

Comments
 (0)