From 51665236fa8693e14569ef811eb7bc45a6f90c99 Mon Sep 17 00:00:00 2001 From: saq10002 Date: Thu, 6 Nov 2014 16:01:28 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd7414e..1dcb078 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ dynamicbitset Simple C++ dynamic bit array. It is like ```std::bitset``` but its size can be dynamically set. The bits are stored from left-to-right order as if in an array, where the leftmost bit is the ```0```th and the rightmost bit is the ```(n-1)```th bit. -Under the hood, bits are stored in a byte array, and the rightmost ```8-(n%8)``` bits in the rightmost byte remain unused. +Under the hood, bits are stored in a byte array, and the rightmost ```8-(n%8)``` bits in the rightmost byte remain unused when ```n``` is not a multiple of ```8```. The code is compiled under both ```MSVC``` and ```GCC```, and tested using Google C++ testing framework (http://code.google.com/p/googletest/).