Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump crate-ci/typos from 1.23.6 to 1.24.3 #5085

Merged
merged 2 commits into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@v1.23.6
uses: crate-ci/typos@v1.24.3

licenses:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions core/src/docs/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ Please use `op.list_with().metakey()` instead of `op.metadata(&entry)`, for exam
```rust
// Before
let entries: Vec<Entry> = op.list("dir/").await?;
for entry in entris {
for entry in entries {
let meta = op.metadata(&entry, Metakey::ContentLength | Metakey::ContentType).await?;
println!("{} {}", entry.name(), entry.metadata().content_length());
}
Expand All @@ -424,7 +424,7 @@ for entry in entris {
let entries: Vec<Entry> = op
.list_with("dir/")
.metakey(Metakey::ContentLength | Metakey::ContentType).await?;
for entry in entris {
for entry in entries {
println!("{} {}", entry.name(), entry.metadata().content_length());
}
```
Expand Down
Loading