Skip to content

Commit 5ed4022

Browse files
committed
fix typos
1 parent d1b087f commit 5ed4022

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/ISSUE_TEMPLATE/ice.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
attributes:
1111
label: Summary
1212
description: |
13-
If possible, try to provide a minimal verifiable example. You can read ["Rust Bug Minimization Patterns"][mve] for how to create smaller examples. Otherwise, provide the crate where the ICE occured.
13+
If possible, try to provide a minimal verifiable example. You can read ["Rust Bug Minimization Patterns"][mve] for how to create smaller examples. Otherwise, provide the crate where the ICE occurred.
1414
1515
[mve]: http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
1616
validations:

clippy_lints/src/upper_case_acronyms.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ impl LateLintPass<'_> for UpperCaseAcronyms {
114114
check_ident(cx, &it.ident, self.upper_case_acronyms_aggressive);
115115
},
116116
ItemKind::Enum(ref enumdef, _) => {
117-
// check enum variants seperately because again we only want to lint on private enums and
117+
// check enum variants separately because again we only want to lint on private enums and
118118
// the fn check_variant does not know about the vis of the enum of its variants
119119
enumdef
120120
.variants

0 commit comments

Comments
 (0)