Skip to content

Commit

Permalink
fix typos and add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang committed Jun 3, 2024
1 parent b036447 commit 98325be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/io-config/src/azure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl AzureConfig {
if let Some(client_secret) = &self.client_secret {
res.push(format!("Client Secret = {}", client_secret));
}
res.push(format!("Anoynmous = {}", self.anonymous));
res.push(format!("Anonymous = {}", self.anonymous));
if let Some(endpoint_url) = &self.endpoint_url {
res.push(format!("Endpoint URL = {}", endpoint_url));
}
Expand Down
2 changes: 1 addition & 1 deletion src/common/io-config/src/gcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl GCSConfig {
if let Some(project_id) = &self.project_id {
res.push(format!("Project ID = {}", project_id));
}
res.push(format!("Anoynmous = {}", self.anonymous));
res.push(format!("Anonymous = {}", self.anonymous));
res
}
}
Expand Down
4 changes: 3 additions & 1 deletion src/common/io-config/src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ pub struct S3Credentials {
pub credentials: crate::S3Credentials,
}

/// Create configurations to be used when accessing Azure Blob Storage. To authenticate with Microsoft Entra ID, `tenant_id`, `client_id`, and `client_secret` must be provided.
/// Create configurations to be used when accessing Azure Blob Storage.
/// To authenticate with Microsoft Entra ID, `tenant_id`, `client_id`, and `client_secret` must be provided.
/// If no credentials are provided, Daft will attempt to fetch credentials from the environment.
///
/// Args:
/// storage_account (str): Azure Storage Account, defaults to reading from `AZURE_STORAGE_ACCOUNT` environment variable.
Expand Down

0 comments on commit 98325be

Please sign in to comment.