Skip to content

Commit a5a1b56

Browse files
authored
Update attribute.md,
#![allow(unusude_variables)] -> #![allow(unused_variables)]
1 parent c0be629 commit a5a1b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ with the difference between them being where they apply.
3333
- `#![inner_attribute]` applies to the enclosing [item][item] (typically a
3434
module or a crate). In other words, this attribute is interpreted as
3535
applying to the entire scope in which it's place. Here is an example
36-
where `#![allow(unusude_variables)]` applies to the whole crate (if
36+
where `#![allow(unused_variables)]` applies to the whole crate (if
3737
placed in `main.rs`):
3838
```rust
3939
#![allow(unused_variables)]

0 commit comments

Comments
 (0)