We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"How it Works" example has
#[macro_use] extern crate derive_builder;
which is old style Rust and not very recognizable/usable to newbies (https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html).
Below it, "Get Started" says "Add use derive_builder::Builder;", which is the new style.
use derive_builder::Builder;
The text was updated successfully, but these errors were encountered:
This relates to #231; I think we want to move all the tests and examples to the new style.
Sorry, something went wrong.
Update example style to remove #[macro_use]
cb79ad1
Fixes #211
a9fb83a
Successfully merging a pull request may close this issue.
"How it Works" example has
which is old style Rust and not very recognizable/usable to newbies (https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html).
Below it, "Get Started" says "Add
use derive_builder::Builder;
", which is the new style.The text was updated successfully, but these errors were encountered: