Skip to content

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_ecs/src/schedule/condition.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ pub type And<A, B> = CombinatorSystem<AndMarker, A, B>;
11641164
/// Combines and inverts the outputs of two systems using the `&&` and `!` operators.
11651165
pub type Nand<A, B> = CombinatorSystem<NandMarker, A, B>;
11661166

1167-
/// Combines and inverts the outputs of two systems using the `&&` and `!` operators.
1167+
/// Combines and inverts the outputs of two systems using the `||` and `!` operators.
11681168
pub type Nor<A, B> = CombinatorSystem<NorMarker, A, B>;
11691169

11701170
/// Combines the outputs of two systems using the `||` operator.

0 commit comments

Comments
 (0)