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:
eggcaker 2025-02-06 21:01:09 +08:00 committed by GitHub
parent 3770a5eed1
commit bdc767bf23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,
},
]