Skip to content

Commit

Permalink
fix clippy lint name
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Mar 14, 2022
1 parent b109401 commit 7f5959b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub use erased_serde;
pub mod __macro_exports {
use crate::Uuid;

#[allow(clippy::unusual-byte-groupings)] // unusual byte grouping is meant to signal the relevant bits
#[allow(clippy::unusual_byte_groupings)] // unusual byte grouping is meant to signal the relevant bits
pub const fn generate_composite_uuid(a: Uuid, b: Uuid) -> Uuid {
let mut new = [0; 16];
let mut i = 0;
Expand Down

0 comments on commit 7f5959b

Please sign in to comment.