diff options
| author | practicalswift <[email protected]> | 2017-03-21 19:49:08 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-03-21 19:49:08 +0100 |
| commit | dbf30ff10f76d2ab9114b345e8712cba30a8d282 (patch) | |
| tree | 113b54b12a394382eee95bf40120009b2d143b0a /src/test/util_tests.cpp | |
| parent | Merge #9734: Add updating of chainTxData to release process (diff) | |
| download | discoin-dbf30ff10f76d2ab9114b345e8712cba30a8d282.tar.xz discoin-dbf30ff10f76d2ab9114b345e8712cba30a8d282.zip | |
[trivial] Fix typos in comments
Diffstat (limited to 'src/test/util_tests.cpp')
| -rw-r--r-- | src/test/util_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp index 79d02257f..5da4907f0 100644 --- a/src/test/util_tests.cpp +++ b/src/test/util_tests.cpp @@ -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; |