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.
Combine
unwrap_or(false)
1 parent 5652926 commit 9c00b3aCopy full SHA for 9c00b3a
1 file changed
crates/bevy_ecs/src/system/combinator.rs
@@ -43,7 +43,7 @@ use super::{IntoSystem, ReadOnlySystem, RunSystemError, System};
43
/// a: impl FnOnce(A::In, &mut T) -> Result<A::Out, RunSystemError>,
44
/// b: impl FnOnce(B::In, &mut T) -> Result<B::Out, RunSystemError>,
45
/// ) -> Result<Self::Out, RunSystemError> {
46
-/// Ok(a((), data)? ^ b((), data)?)
+/// Ok(a((), data).unwrap_or(false) ^ b((), data).unwrap_or(false))
47
/// }
48
49
///
0 commit comments