소스 검색

Fixed a typo in the per_cpu_hashmap documentation

William Batista 2 년 전
부모
커밋
3d1013d729
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      aya/src/maps/hash_map/per_cpu_hash_map.rs

+ 1 - 1
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