Skip to content

Commit 5a57631

Browse files
build(deps): bump crate-ci/typos from 1.24.6 to 1.26.8 (#2451)
Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.24.6 to 1.26.8.
1 parent f888219 commit 5a57631

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Check for typos
40-
uses: crate-ci/typos@v1.24.6
40+
uses: crate-ci/typos@v1.26.8
4141
with:
4242
config: ./.github/typos.toml
4343

src/generics/trait-bounds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn duplicate<T: Clone>(a: T) -> (T, T) {
1414
(a.clone(), a.clone())
1515
}
1616
17-
// struct NotClonable;
17+
// struct NotCloneable;
1818
1919
fn main() {
2020
let foo = String::from("foo");
@@ -25,7 +25,7 @@ fn main() {
2525

2626
<details>
2727

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

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

0 commit comments

Comments
 (0)