diff options
Diffstat (limited to 'lib/pure/random.nim')
-rw-r--r-- | lib/pure/random.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/random.nim b/lib/pure/random.nim index 08da771dc..955a70143 100644 --- a/lib/pure/random.nim +++ b/lib/pure/random.nim @@ -122,7 +122,7 @@ when isMainModule: inc occur[x] for i, oc in occur: if oc < 69: - doAssert false, "too few occurances of " & $i + doAssert false, "too few occurrences of " & $i elif oc > 130: - doAssert false, "too many occurances of " & $i + doAssert false, "too many occurrences of " & $i main() |