From 2d1aa8b9a7b4fbfd3db94bd8fff3b78f44499283 Mon Sep 17 00:00:00 2001 From: 0xAX <0xAX@users.noreply.github.com> Date: Sat, 12 Mar 2016 20:05:26 +0600 Subject: [PATCH] Update bitmap.md --- DataStructures/bitmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/bitmap.md b/DataStructures/bitmap.md index 44b7297..6aa3378 100644 --- a/DataStructures/bitmap.md +++ b/DataStructures/bitmap.md @@ -33,7 +33,7 @@ The second way is to use the `DECLARE_BITMAP` macro which is defined in the [inc unsigned long name[BITS_TO_LONGS(bits)] ``` -We can see that `DECLARE_BITMAP` takes two parameters: +We can see that `DECLARE_BITMAP` macro takes two parameters: * `name` - name of bitmap; * `bits` - amount of bits in bitmap;