Skip to content

Commit 8e5e8fa

Browse files
authored
Merge pull request #31 from tomhea/hotfix/fix-exponent-website
fix exponents in website
2 parents 483492a + f4f6e2e commit 8e5e8fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Advanced-Features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ The block size for a 4-byte int and an 8-byte size_t is 10 ints (40 bytes), so t
6868
and the iterator and the fill operation are affected too.
6969
7070
The Farray1 class can get a second template argument - which is the `ptr_size`.<br />
71-
It can be as small as you want, but it will work (for an n-bit unsigned ptr_size) with #blocks < 2<sup>n</sup> arrays.<br />
72-
For example, an uint16_t (16-bit) ptr_size can be used with a char (1-byte) array of up to 2<sup>16</sup> blocks, or 2<sup>16</sup>*5 bytes.
71+
It can be as small as you want, but it will work (for an n-bit unsigned ptr_size) with #blocks < 2^n arrays.<br />
72+
For example, an uint16_t (16-bit) ptr_size can be used with a char (1-byte) array of up to 2^16 blocks, or (2^16)*5 bytes (up to 327,680 bytes).
7373
7474
```c
7575
Farray<char, uint16_t> A(200000);

0 commit comments

Comments
 (0)