mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Fix into decimal
command category (#8932)
Commands like this one belong to conversions category Fixes #8931 Co-authored-by: Mate Farkas <Mate.Farkas@oneidentity.com>
This commit is contained in:
parent
91c01bf6b3
commit
1855dfb656
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,7 @@ use nu_engine::CallExt;
|
|||
use nu_protocol::{
|
||||
ast::{Call, CellPath},
|
||||
engine::{Command, EngineState, Stack},
|
||||
Example, PipelineData, ShellError, Signature, Span, SyntaxShape, Type, Value,
|
||||
Category, Example, PipelineData, ShellError, Signature, Span, SyntaxShape, Type, Value,
|
||||
};
|
||||
|
||||
#[derive(Clone)]
|
||||
|
@ -25,6 +25,7 @@ impl Command for SubCommand {
|
|||
SyntaxShape::CellPath,
|
||||
"for a data structure input, convert data at the given cell paths",
|
||||
)
|
||||
.category(Category::Conversions)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
|
Loading…
Reference in a new issue