diff --git a/crates/nu-command/src/core_commands/help_operators.rs b/crates/nu-command/src/core_commands/help_operators.rs index a4f879f9b..fee5a3858 100644 --- a/crates/nu-command/src/core_commands/help_operators.rs +++ b/crates/nu-command/src/core_commands/help_operators.rs @@ -284,13 +284,6 @@ fn generate_operator_info() -> Vec { description: "Shifts a value right by another.".into(), precedence: 85, }, - OperatorInfo { - op_type: "Boolean".into(), - operator: "&&".into(), - name: "And".into(), - description: "Deprecated. Checks if two values are true.".into(), - precedence: 50, - }, OperatorInfo { op_type: "Boolean".into(), operator: "and".into(), @@ -298,13 +291,6 @@ fn generate_operator_info() -> Vec { description: "Checks if two values are true.".into(), precedence: 50, }, - OperatorInfo { - op_type: "Boolean".into(), - operator: "||".into(), - name: "Or".into(), - description: "Deprecated. Checks if either value is true.".into(), - precedence: 40, - }, OperatorInfo { op_type: "Boolean".into(), operator: "or".into(),