mirror of
https://github.com/nushell/nushell.git
synced 2025-05-16 16:04:30 +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 {
|
||||
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,
|
||||
},
|
||||
Example {
|
||||
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,
|
||||
},
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user