colin-kiegel / rust-derive-builder

derive builder implementation for rust structs
https://colin-kiegel.github.io/rust-derive-builder/
Apache License 2.0
1.28k stars 82 forks source link

Public functions missing docs #217

Closed opeik closed 3 years ago

opeik commented 3 years ago

I'm having the following issue while using the #[deny(missing_docs)] lint:

warning: missing documentation for an associated function
   |
   | #[derive(Clone, Debug, derive_builder::Builder, getset::Getters)]
   |                        ^^^^^^^^^^^^^^^^^^^^^^^ in this derive macro expansion
   | 
  ::: /home/opeik/.cargo/registry/src/github.com-1ecc6299db9ec823/derive_builder_macro-0.10.2/src/lib.rs:15:1
   |
15 | pub fn derive(input: TokenStream) -> TokenStream {
   | ------------------------------------------------ in this expansion of `#[derive(derive_builder::Builder)]`
   |
note: the lint level is defined here
   |
   | #![warn(missing_docs, clippy::cargo, clippy::nursery, clippy::pedantic)]
   |         ^^^^^^^^^^^^
opeik commented 3 years ago

Nevermind, I somehow managed to delete a single / in one of my field comments. 😅