Skip to content

Commit 5049e99

Browse files
committed
#219-fix typos in docstrings
Applied to README.md. Two minor enhancements.
1 parent 599340a commit 5049e99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ Each of the implemented PRNG is described in an independent module. The name of
389389

390390
**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.
391391

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**.
393393

394394
Furthermore, every inheriting class MUST override the next three methods (if not, they each raise a `NotImplementedError` exception when called):
395395

@@ -725,8 +725,8 @@ It escapes the zeroland at a fast pace (about 100 loops) and offers jump-ahead f
725725

726726

727727

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.
730730

731731
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:
732732

0 commit comments

Comments
 (0)