Skip to content

Commit

Permalink
Add comment to point out intended typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser authored and compiler-errors committed Sep 27, 2023
1 parent a6dab4b commit 564dff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text/3013-conditional-compilation-checking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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() { /* ... */ }
```

Expand Down

0 comments on commit 564dff9

Please sign in to comment.