mirror of
https://github.com/nushell/nushell.git
synced 2025-05-17 00:10:53 +02:00
fix polars save example typo (#15008)
# Description fix polars save example dfr -> polars I'm wondering why the commands `polars open` and `polars save` don't have the same flags?
This commit is contained in:
parent
3770a5eed1
commit
bdc767bf23
@ -94,12 +94,12 @@ impl PluginCommand for SaveDF {
|
|||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
description: "Saves dataframe to CSV file",
|
description: "Saves dataframe to CSV file",
|
||||||
example: "[[a b]; [1 2] [3 4]] | dfr into-df | dfr save test.csv",
|
example: "[[a b]; [1 2] [3 4]] | polars into-df | polars save test.csv",
|
||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
description: "Saves dataframe to CSV file using other delimiter",
|
description: "Saves dataframe to CSV file using other delimiter",
|
||||||
example: "[[a b]; [1 2] [3 4]] | dfr into-df | dfr save test.csv --delimiter '|'",
|
example: "[[a b]; [1 2] [3 4]] | polars into-df | polars save test.csv --csv-delimiter '|'",
|
||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user