diff options
Diffstat (limited to 'azalea/src/swarm/plugins.rs')
| -rw-r--r-- | azalea/src/swarm/plugins.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea/src/swarm/plugins.rs b/azalea/src/swarm/plugins.rs index 0c7cf2ae..f92d40e6 100644 --- a/azalea/src/swarm/plugins.rs +++ b/azalea/src/swarm/plugins.rs @@ -13,7 +13,8 @@ type U64Hasher = BuildHasherDefault<NoHashHasher<u64>>; /// A map of plugin ids to [`SwarmPlugin`] trait objects. The client stores /// this so we can keep the state for our [`Swarm`] plugins. /// -/// If you're using azalea, you should generate this from the `swarm_plugins!` macro. +/// If you're using azalea, you should generate this from the `swarm_plugins!` +/// macro. #[derive(Clone, Default)] pub struct SwarmPlugins<S> { map: Option<HashMap<TypeId, Box<dyn SwarmPlugin<S>>, U64Hasher>>, |
