File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl SystemSet for InternedSystemSet {
108
108
}
109
109
110
110
fn dyn_hash ( & self , state : & mut dyn Hasher ) {
111
- ( * * self ) . dyn_hash ( state)
111
+ ( * * self ) . dyn_hash ( state) ;
112
112
}
113
113
114
114
fn dyn_static_ref ( & self ) -> Option < & ' static dyn SystemSet > {
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ macro_rules! define_label {
84
84
pub trait $label_trait_name: ' static + Send + Sync + :: std:: fmt:: Debug {
85
85
/// Clones this `
86
86
#[ doc = stringify!( $label_trait_name) ]
87
- /// `
87
+ ///`.
88
88
fn dyn_clone( & self ) -> Box <dyn $label_trait_name>;
89
89
90
90
/// Casts this value to a form where it can be compared with other type-erased values.
@@ -131,7 +131,7 @@ macro_rules! define_label {
131
131
None
132
132
}
133
133
134
- /// Returns an `interned` (bevy_utils::intern::Interned) value corresponding to `self`.
134
+ /// Returns an [`Interned`] (bevy_utils::intern::Interned) value corresponding to `self`.
135
135
fn intern( & self ) -> :: bevy_utils:: intern:: Interned <dyn $label_trait_name>
136
136
where Self : Sized {
137
137
$interner_name. intern( self )
@@ -149,7 +149,7 @@ macro_rules! define_label {
149
149
}
150
150
151
151
fn dyn_hash( & self , state: & mut dyn :: std:: hash:: Hasher ) {
152
- ( * * self ) . dyn_hash( state)
152
+ ( * * self ) . dyn_hash( state) ;
153
153
}
154
154
155
155
fn dyn_static_ref( & self ) -> Option <& ' static dyn $label_trait_name> {
You can’t perform that action at this time.
0 commit comments