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())), }] }