From 3d1013d72981e673cbc3d24401d5855ab12f6a02 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 eea8ed01..aaa48838 100644 --- a/aya/src/maps/hash_map/per_cpu_hash_map.rs +++ b/aya/src/maps/hash_map/per_cpu_hash_map.rs @@ -12,7 +12,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