From 82b6e5d53dcf51ce8f2fc08181c96db51bb570cb Mon Sep 17 00:00:00 2001 From: William Batista Date: Fri, 31 Mar 2023 15:23:22 -0400 Subject: [PATCH] Fixed a typo in the per_cpu_hashmap documentation --- aya/src/maps/hash_map/per_cpu_hash_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya/src/maps/hash_map/per_cpu_hash_map.rs b/aya/src/maps/hash_map/per_cpu_hash_map.rs index eb7fe6ae..8822f4f7 100644 --- a/aya/src/maps/hash_map/per_cpu_hash_map.rs +++ b/aya/src/maps/hash_map/per_cpu_hash_map.rs @@ -13,7 +13,7 @@ use crate::{ Pod, }; -/// Similar to [`HashMap`](crate::maps::HashMap) but each CPU holds a separate value for a given key. Tipically used to +/// Similar to [`HashMap`](crate::maps::HashMap) but each CPU holds a separate value for a given key. Typically used to /// minimize lock contention in eBPF programs. /// /// This type can be used with eBPF maps of type `BPF_MAP_TYPE_PERCPU_HASH` and