From 49e998dc7eb248b5fe31a03bc1ca4db7e736bac7 Mon Sep 17 00:00:00 2001 From: Daniil Bondarev Date: Wed, 16 Feb 2022 16:27:10 -0800 Subject: [PATCH] Fix typo in aya/README.md --- aya/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya/README.md b/aya/README.md index 46788dd4..e7798ca5 100644 --- a/aya/README.md +++ b/aya/README.md @@ -71,7 +71,7 @@ let ingress: &mut CgroupSkb = bpf.program_mut("ingress_filter")?.try_into()?; // load the program into the kernel ingress.load()?; -// attach th program to the root cgroup. `ingress_filter` will be called for all +// attach the program to the root cgroup. `ingress_filter` will be called for all // incoming packets. let cgroup = File::open("/sys/fs/cgroup/unified")?; ingress.attach(cgroup, CgroupSkbAttachType::Ingress)?;