From ecee5a984559bca11e58a4a0203ad5994fc88991 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Mon, 11 Oct 2021 07:28:33 +1300 Subject: [PATCH] Update chars.rs --- crates/nu-command/src/strings/split/chars.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/nu-command/src/strings/split/chars.rs b/crates/nu-command/src/strings/split/chars.rs index bb05990fee..382b50ee9d 100644 --- a/crates/nu-command/src/strings/split/chars.rs +++ b/crates/nu-command/src/strings/split/chars.rs @@ -64,7 +64,6 @@ impl Command for SubCommand { fn split_chars(call: &Call, input: Value) -> Result { let span = call.head; - Ok(input.flat_map(span, move |x| split_chars_helper(&x, span))) }