We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bevy_reflect::Set::remove
1 parent f0dbe20 commit fe03e47Copy full SHA for fe03e47
crates/bevy_reflect/src/set.rs
@@ -93,8 +93,8 @@ pub trait Set: PartialReflect {
93
94
/// Removes a value from the set.
95
///
96
- /// If the set did not have this value present, `true` is returned.
97
- /// If the set did have this value present, `false` is returned.
+ /// If the set did have this value present, `true` is returned.
+ /// If the set did not have this value present, `false` is returned.
98
fn remove(&mut self, value: &dyn PartialReflect) -> bool;
99
100
/// Checks if the given value is contained in the set
0 commit comments