MathNya / umya-spreadsheet

A pure rust library for reading and writing spreadsheet files
MIT License
240 stars 41 forks source link

Added support for AsRef<Path> argument for reader/writers #71

Closed usagi closed 2 years ago

usagi commented 2 years ago

fix #70

cstkingkey commented 2 years ago

let path_tmp = path.as_ref().with_extension("tmp");

MathNya commented 2 years ago

Thank you. Merged.

let path_tmp = path.as_ref().with_extension("tmp");

The above modifications will be handled here.