Skip to content

Commit

Permalink
build(deps): bump crate-ci/typos from 1.24.6 to 1.26.8 (#2451)
Browse files Browse the repository at this point in the history
Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.24.6 to
1.26.8.
  • Loading branch information
dependabot[bot] authored Nov 1, 2024
1 parent f888219 commit 5a57631
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v4

- name: Check for typos
uses: crate-ci/typos@v1.24.6
uses: crate-ci/typos@v1.26.8
with:
config: ./.github/typos.toml

Expand Down
4 changes: 2 additions & 2 deletions src/generics/trait-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn duplicate<T: Clone>(a: T) -> (T, T) {
(a.clone(), a.clone())
}
// struct NotClonable;
// struct NotCloneable;
fn main() {
let foo = String::from("foo");
Expand All @@ -25,7 +25,7 @@ fn main() {

<details>

- Try making a `NonClonable` and passing it to `duplicate`.
- Try making a `NonCloneable` and passing it to `duplicate`.

- When multiple traits are necessary, use `+` to join them.

Expand Down

0 comments on commit 5a57631

Please sign in to comment.