Add comment to point out intended typo

This commit is contained in:
Wesley Wiser 2023-09-26 20:04:37 -04:00 committed by Michael Goulet
parent a6dab4be2e
commit 564dff9415
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 = "widnows")] // notice the typo!
fn do_windows_thing() { /* ... */ }
```