From 0242b30027293173e0acbbdd77b17f5ebf64b1f9 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Tue, 13 Dec 2022 16:49:00 +1300 Subject: [PATCH] Revert "Add pipeline operators to help" (#7454) Reverts nushell/nushell#7449 --- .../src/core_commands/help_operators.rs | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/crates/nu-command/src/core_commands/help_operators.rs b/crates/nu-command/src/core_commands/help_operators.rs index 7bda51e20c..fcbbeeabd9 100644 --- a/crates/nu-command/src/core_commands/help_operators.rs +++ b/crates/nu-command/src/core_commands/help_operators.rs @@ -312,24 +312,6 @@ fn generate_operator_info() -> Vec { description: "Checks if one value is true and the other is false.".into(), precedence: 45, }, - OperatorInfo { - op_type: "Pipeline".into(), - operator: "&&".into(), - name: "PipelineAnd".into(), - description: - "Runs the pipeline on the left and, if successful, runs pipeline on the right." - .into(), - precedence: 0, - }, - OperatorInfo { - op_type: "Pipeline".into(), - operator: "||".into(), - name: "PipelineOr".into(), - description: - "Runs the pipeline on the left and, if it failed, runs pipeline on the right." - .into(), - precedence: 0, - }, ] }