Remove superfluous word

This commit is contained in:
Hynek Schlawack 2017-12-27 12:01:08 +01:00
parent d33906ab90
commit 8249305e12
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
The traversal of of MROs when using multiple inheritance was backward:
The traversal of MROs when using multiple inheritance was backward:
If you defined a class ``C`` that subclasses ``A`` and ``B`` like ``C(A, B)``, ``attrs`` would have collected the attributes from ``B`` *before* those of ``A``.
This is now fixed and means that in classes that employ multiple inheritance, the output of ``__repr__`` and the order of positional arguments in ``__init__`` changes.

View File

@ -1,4 +1,4 @@
The traversal of of MROs when using multiple inheritance was backward:
The traversal of MROs when using multiple inheritance was backward:
If you defined a class ``C`` that subclasses ``A`` and ``B`` like ``C(A, B)``, ``attrs`` would have collected the attributes from ``B`` *before* those of ``A``.
This is now fixed and means that in classes that employ multiple inheritance, the output of ``__repr__`` and the order of positional arguments in ``__init__`` changes.

View File

@ -1,4 +1,4 @@
The traversal of of MROs when using multiple inheritance was backward:
The traversal of MROs when using multiple inheritance was backward:
If you defined a class ``C`` that subclasses ``A`` and ``B`` like ``C(A, B)``, ``attrs`` would have collected the attributes from ``B`` *before* those of ``A``.
This is now fixed and means that in classes that employ multiple inheritance, the output of ``__repr__`` and the order of positional arguments in ``__init__`` changes.