From 4a9e5843a7ebdbb3f1e99ae6266d8d8affd7417c Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Mon, 24 Jan 2022 11:32:14 +0100 Subject: [PATCH] fix typo --- {{project-name}}/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{project-name}}/src/main.rs b/{{project-name}}/src/main.rs index 26eeb89..205e964 100644 --- a/{{project-name}}/src/main.rs +++ b/{{project-name}}/src/main.rs @@ -63,7 +63,7 @@ async fn main() -> Result<(), anyhow::Error> { ColorChoice::Auto, )?; - // This will include youe eBPF object file as raw bytes at compile-time and load it at + // This will include your eBPF object file as raw bytes at compile-time and load it at // runtime. This approach is recommended for most real-world use cases. If you would // like to specify the eBPF program at runtime rather than at compile-time, you can // reach for `Bpf::load_file` instead.