From 533e0d227e0a395d32778be2269d52dd1ce33ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 21 Jan 2025 09:34:31 -0800 Subject: [PATCH] Remove 'missing_docs' lint annotation from OpenMap impl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the 'missing_docs' lint annotation from OpenMap impl, as it is no longer required. Signed-off-by: Daniel Müller --- libbpf-rs/src/map.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libbpf-rs/src/map.rs b/libbpf-rs/src/map.rs index 3d87120c..493d8128 100644 --- a/libbpf-rs/src/map.rs +++ b/libbpf-rs/src/map.rs @@ -56,8 +56,6 @@ pub struct OpenMapImpl<'obj, T = ()> { _phantom: PhantomData<&'obj T>, } -// TODO: Document members. -#[allow(missing_docs)] impl<'obj> OpenMap<'obj> { /// Create a new [`OpenMap`] from a ptr to a `libbpf_sys::bpf_map`. pub fn new(object: &'obj libbpf_sys::bpf_map) -> Self {