We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2fb516 + 98e973c commit ee8a8a7Copy full SHA for ee8a8a7
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- Keyword sanitizing (`async`)
13
14
### Changed
15
16
- [breaking-change] Among other cleanups, MSP430 crates are now expected to
src/util.rs
@@ -68,8 +68,8 @@ impl ToSanitizedSnakeCase for str {
68
abstract,
69
alignof,
70
as,
71
- r#async,
72
- r#await,
+ async,
+ await,
73
become,
74
box,
75
break,
@@ -109,7 +109,7 @@ impl ToSanitizedSnakeCase for str {
109
super,
110
trait,
111
true,
112
- r#try,
+ try,
113
type,
114
typeof,
115
unsafe,
0 commit comments