From 18487093d86fd94e1e9452684a447b365b52d98a Mon Sep 17 00:00:00 2001 From: Jack Wright Date: Tue, 8 Apr 2025 16:54:22 -0700 Subject: [PATCH] Change command to-dtype to into-dtype --- .../nu_plugin_polars/src/dataframe/command/core/to_dtype.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs b/crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs index d3847a0d46..f62d0c2b23 100644 --- a/crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs +++ b/crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs @@ -12,7 +12,7 @@ impl PluginCommand for ToDataType { type Plugin = PolarsPlugin; fn name(&self) -> &str { - "polars to-dtype" + "polars into-dtype" } fn description(&self) -> &str { @@ -28,7 +28,7 @@ impl PluginCommand for ToDataType { fn examples(&self) -> Vec { vec![Example { description: "Convert a string to a specific datatype", - example: r#""i64" | polars to-dtype"#, + example: r#""i64" | polars into-dtype"#, result: Some(Value::string("i64", Span::test_data())), }] }