Skip to content

Commit

Permalink
Fix a couple of typos (#1898)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphare committed Oct 11, 2023
1 parent dccaa30 commit 8532901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ impl Storage for opendal::Operator {
let can_write = match self.write(path, "Hello, World!").await {
Ok(_) => true,
Err(err) if err.kind() == ErrorKind::AlreadyExists => true,
// Toralte all other write errors because we can do read as least.
// Tolerate all other write errors because we can do read at least.
Err(err) => {
eprintln!("storage write check failed: {err:?}");
false
Expand Down

0 comments on commit 8532901

Please sign in to comment.