From 6153b92ec2da07f6d714dae027751c501b121c48 Mon Sep 17 00:00:00 2001 From: Chris Seto Date: Sun, 28 Feb 2016 23:12:12 -0500 Subject: [PATCH] Fix typo --- DataStructures/bitmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/bitmap.md b/DataStructures/bitmap.md index 8ac043a..44b7297 100644 --- a/DataStructures/bitmap.md +++ b/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]