From aa8686c8892ccb55cf82edb18e14d88b70dfe98e Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Thu, 11 Jul 2024 17:45:22 -0700 Subject: [PATCH] Fix order of I/O types in `take until` --- crates/nu-command/src/filters/take/take_until.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filters/take/take_until.rs b/crates/nu-command/src/filters/take/take_until.rs index c7debf5dee..025f80e632 100644 --- a/crates/nu-command/src/filters/take/take_until.rs +++ b/crates/nu-command/src/filters/take/take_until.rs @@ -12,11 +12,11 @@ impl Command for TakeUntil { fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ - (Type::table(), Type::table()), ( Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)), ), + (Type::table(), Type::table()), ]) .required( "predicate",