Skip to content

Commit 14c6ff8

Browse files
valkumdjc
authored andcommitted
chore: formatting and typos
1 parent b187a7b commit 14c6ff8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hyper-rustls = { version = "0.24", default-features = false, features = ["tokio-
2323
ring = "0.16.20"
2424
rustls = "0.21"
2525
rustls-pemfile = "1.0.0"
26-
serde = {version = "1.0", features = ["derive", "rc"]}
26+
serde = { version = "1.0", features = ["derive", "rc"] }
2727
serde_json = "1.0"
2828
thiserror = "1.0"
2929
time = { version = "0.3.5", features = ["serde"] }

src/authentication_manager.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ pub(crate) trait ServiceAccount: Send + Sync {
1515
async fn refresh_token(&self, client: &HyperClient, scopes: &[&str]) -> Result<Token, Error>;
1616
}
1717

18-
/// Authentication manager is responsible for caching and obtaing credentials for the required scope
18+
/// Authentication manager is responsible for caching and obtaining credentials for the required
19+
/// scope
1920
///
2021
/// Construct the authentication manager with [`AuthenticationManager::new()`] or by creating
2122
/// a [`CustomServiceAccount`], then converting it into an `AuthenticationManager` using the `From`

0 commit comments

Comments
 (0)