diff --git a/crates/bevy_ecs/src/schedule/condition.rs b/crates/bevy_ecs/src/schedule/condition.rs index c72aa8396b7bd..4a6a5101b8c50 100644 --- a/crates/bevy_ecs/src/schedule/condition.rs +++ b/crates/bevy_ecs/src/schedule/condition.rs @@ -1164,7 +1164,7 @@ pub type And = CombinatorSystem; /// Combines and inverts the outputs of two systems using the `&&` and `!` operators. pub type Nand = CombinatorSystem; -/// Combines and inverts the outputs of two systems using the `&&` and `!` operators. +/// Combines and inverts the outputs of two systems using the `||` and `!` operators. pub type Nor = CombinatorSystem; /// Combines the outputs of two systems using the `||` operator.