From d53e708a386b8d52186020904dcf36cf0f974994 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Thu, 6 Nov 2014 14:19:06 +0200 Subject: [PATCH] Correct some typos. --- pysollib/pysolrandom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysollib/pysolrandom.py b/pysollib/pysolrandom.py index 89e2d350..d674e44b 100644 --- a/pysollib/pysolrandom.py +++ b/pysollib/pysolrandom.py @@ -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):