From bcdf74562b65213862596b2cd66183e9d7a3af1d Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 27 May 2021 11:35:25 -0500 Subject: [PATCH] remove into int references (#3499) --- crates/nu-command/src/commands/into/binary.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/crates/nu-command/src/commands/into/binary.rs b/crates/nu-command/src/commands/into/binary.rs index 00c14fcd27..7dd3393664 100644 --- a/crates/nu-command/src/commands/into/binary.rs +++ b/crates/nu-command/src/commands/into/binary.rs @@ -240,17 +240,19 @@ pub fn action( .to_vec(), _ => { return Err(ShellError::unimplemented( - "'into int' for non-numeric primitives", + "'into binary' for non-numeric primitives", )) } }) .into_value(&tag)), UntaggedValue::Row(_) => Err(ShellError::labeled_error( - "specify column name to use, with 'into int COLUMN'", + "specify column name to use, with 'into binary COLUMN'", "found table", tag, )), - _ => Err(ShellError::unimplemented("'into int' for unsupported type")), + _ => Err(ShellError::unimplemented( + "'into binary' for unsupported type", + )), } }