You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -389,7 +389,7 @@ Each of the implemented PRNG is described in an independent module. The name of
389
389
390
390
**BaseRandom** is the base class for every implemented PRNG in library **PyRandLib**. It inherits from the Python built-in class `random.Random`. It aims at providing simple common behavior for all PRNG classes of the library, the most noticeable one being the 'callable' nature of every implemented PRNG.
391
391
392
-
Inheriting from the Python built-in class random.Random, **BaseRandom** provides access to many useful distribution functions as described in later section **Inherited Distribution Functions**.
392
+
Inheriting from the Python built-in class random.Random, **BaseRandom** provides access to many useful distribution functions as described in later section **Inherited Distribution and Generic Methods**.
393
393
394
394
Furthermore, every inheriting class MUST override the next three methods (if not, they each raise a `NotImplementedError` exception when called):
395
395
@@ -725,8 +725,8 @@ It escapes the zeroland at a fast pace (about 100 loops) and offers jump-ahead f
725
725
726
726
727
727
728
-
## Inherited Distribution and Generic Functions
729
-
(some of next explanation may be free to exact copy of Python documentation.
728
+
## Inherited Distribution and Generic Methods
729
+
(some of next explanation may be either free or exact copy of Python documentation.
730
730
731
731
Since the base class **BaseRandom** inherits from the built-in class `random.Random`, every PRNG class of **PyRandLib** gets automatic access to the next distribution and generic methods:
0 commit comments