From 0b0d4c7e97026848e7627f39ea40b8ab80e41271 Mon Sep 17 00:00:00 2001 From: martinsoees Date: Fri, 12 Jul 2024 03:26:19 -0400 Subject: [PATCH] Map import unused in usage example --- aya-obj/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya-obj/src/lib.rs b/aya-obj/src/lib.rs index 36a22ec9..460d6424 100644 --- a/aya-obj/src/lib.rs +++ b/aya-obj/src/lib.rs @@ -31,7 +31,7 @@ //! This example loads a simple eBPF program and runs it with [rbpf]. //! //! ```no_run -//! use aya_obj::{generated::bpf_insn, Object, Map}; +//! use aya_obj::{generated::bpf_insn, Object}; //! //! // Parse the object file //! let bytes = std::fs::read("program.o").unwrap();