Skip to content

Commit 243d2bb

Browse files
committed
Make kinds module pub
1 parent 72bb580 commit 243d2bb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

crates/bevy_ecs/src/identifier/kinds.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//! Module for defining the different [`super::Identifier`] kinds, which
2+
//! have different semantics with regards to their shared layout.
3+
14
/// The kinds of ID that [`super::Identifier`] can represent. Each
25
/// variant imposes different usages of the low/high segments
36
/// of the ID.

crates/bevy_ecs/src/identifier/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::{hash::Hash, num::NonZeroU32};
1010

1111
pub mod bits;
1212
pub mod error;
13-
pub(crate) mod kinds;
13+
pub mod kinds;
1414
pub(crate) mod masks;
1515

1616
/// A unified identifier for all entity and similar IDs.

0 commit comments

Comments
 (0)