rust-cli/confy

Incorrect Documentation Example

TheLostLambda opened this issue · 1 comments

Just spotted in the documentation for the store functionality:

let my_cfg = MyConf {};
confy::store(my_cfg)?;

I reckon should be:

let my_cfg = MyConf {};
confy::store("my-app-name", my_cfg)?;

Just a small detail, but certainly worth clearing up!

Fixed in #25