diff --git a/derive_builder/src/lib.rs b/derive_builder/src/lib.rs index e5d5b9b..27c392d 100644 --- a/derive_builder/src/lib.rs +++ b/derive_builder/src/lib.rs @@ -275,8 +275,8 @@ //! //! ## Setters for Option //! -//! You can avoid to user to wrap value into `Some(...)` for field of type `Option`. It's as simple as adding -//! `#[builder(setter(strip_option))]` to either a field or the whole struct. +//! You can avoid wrapping values in `Some(...)` for fields of type `Option`. It's as simple as adding +//! `#[builder(setter(strip_option))]` to either a single field or the whole struct. //! //! ```rust //! # #[macro_use]