1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Correct some typos.

This commit is contained in:
Shlomi Fish 2014-11-06 14:19:06 +02:00
parent d31855830d
commit d53e708a38

View file

@ -85,7 +85,7 @@ class BasicRandom:
# ************************************************************************
# * Mersenne Twister random number generator
# * uses standart python module `random'
# * uses the standard python module `random'
# ************************************************************************
class MTRandom(BasicRandom, random.Random):
@ -105,7 +105,7 @@ class MTRandom(BasicRandom, random.Random):
# ************************************************************************
# * Wichman-Hill random number generator
# * uses standart python module `random'
# * uses the standard python module `random'
# ************************************************************************
class WHRandom(BasicRandom, random.WichmannHill):