[trivial] Fix typos in comments

This commit is contained in:
practicalswift
2017-03-21 19:49:08 +01:00
parent 0c17afcbe7
commit dbf30ff10f
12 changed files with 12 additions and 12 deletions

View File

@@ -247,7 +247,7 @@ BOOST_AUTO_TEST_CASE(util_seed_insecure_rand)
for (int mod=2;mod<11;mod++)
{
int mask = 1;
// Really rough binomal confidence approximation.
// Really rough binomial confidence approximation.
int err = 30*10000./mod*sqrt((1./mod*(1-1./mod))/10000.);
//mask is 2^ceil(log2(mod))-1
while(mask<mod-1)mask=(mask<<1)+1;