fix(pubky): bad method documentation

This commit is contained in:
nazeh
2025-02-12 19:58:22 +03:00
parent c27194f96c
commit fb8efe3866
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
// TODO: deny missing docs.
// #![deny(missing_docs)]
#![deny(rustdoc::broken_intra_doc_links)]
// TODO: deny unwrap
// TODO: deny unwrap only in test
#![cfg_attr(any(), deny(clippy::unwrap_used))]
macro_rules! cross_debug {

View File

@@ -50,7 +50,7 @@ impl ClientBuilder {
self
}
/// Create a [mainline::DhtBuilder] if `None`, and allows mutating it with a callback function.
/// Allows mutating the internal [pkarr::ClientBuilder] with a callback function.
pub fn pkarr<F>(&mut self, f: F) -> &mut Self
where
F: FnOnce(&mut pkarr::ClientBuilder) -> &mut pkarr::ClientBuilder,