Chris Seto 9 年之前
父節點
當前提交
6153b92ec2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      DataStructures/bitmap.md

+ 1 - 1
DataStructures/bitmap.md

@@ -20,7 +20,7 @@ So, the main goal of this part is to see how `bit arrays` are implemented in the
 Declaration of bit array
 ================================================================================
 
-Before we will look on `API` for bitmaps manipulation, we must know how to declare it in the Linux kernel. There are two common method to declare own bit array. The first simple way to declrae a bit array is to array of `unsigned long`. For example:
+Before we will look on `API` for bitmaps manipulation, we must know how to declare it in the Linux kernel. There are two common method to declare own bit array. The first simple way to declare a bit array is to array of `unsigned long`. For example:
 
 ```C
 unsigned long my_bitmap[8]