diff options
| author | Lex Neva <github.com@lexneva.name> | 2023-01-16 14:31:51 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2023-02-20 15:27:55 -0500 |
| commit | 85f921cd33b402733cea4ce53206aa70a6092d49 (patch) | |
| tree | 43dcd8c79a2125ce9ac7297cf5d3d5b5f41b01e0 | |
| parent | ba835b4f5e33f404b7bed9369a1b425a67b312c5 (diff) | |
typo fix
| -rw-r--r-- | lib/utils/prng.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/prng.py b/lib/utils/prng.py index 2ec037c6..9face2be 100644 --- a/lib/utils/prng.py +++ b/lib/utils/prng.py @@ -3,7 +3,7 @@ from math import ceil from itertools import count, chain import numpy as np -# Framework for reproducable pseudo-random number generation. +# Framework for reproducible pseudo-random number generation. # Unlike python's random module (which uses a stateful generator based on global variables), # a counter-mode PRNG like uniformFloats can be used to generate multiple, independent random streams |
