Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/bevy_reflect/src/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ pub trait Set: PartialReflect {

/// Removes a value from the set.
///
/// If the set did not have this value present, `true` is returned.
/// 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.
fn remove(&mut self, value: &dyn PartialReflect) -> bool;

/// Checks if the given value is contained in the set
Expand Down