Fix typos in 3013

This commit is contained in:
Meng Xiangzhuo 2023-08-15 06:47:22 +08:00
parent 57e9b8d924
commit 1ddcc5fda3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ the risks is that a condition may contain misspelled identifiers, or may use ide
obsolete or have been removed from a product. For example:
```rust
#[cfg(feature = "widnows")]
#[cfg(feature = "windows")]
fn do_windows_thing() { /* ... */ }
```