Skip to content

Commit c87e33f

Browse files
committed
Fix typo in documentation of model name
1 parent d82d93c commit c87e33f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Ties should have either equivalent rank or score.
8585
The default model is `PlackettLuce`. You can import alternate models from `openskill.models` like so:
8686

8787
```python
88-
>>> from openskill.models import BradelyTerryFull
88+
>>> from openskill.models import BradleyTerryFull
8989
>>> a1 = b1 = c1 = d1 = Rating()
9090
>>> rate([[a1], [b1], [c1], [d1]], rank=[4, 1, 3, 2], model=BradleyTerryFull)
9191
[[[17.09430584957905, 7.5012190693964005]], [[32.90569415042095, 7.5012190693964005]], [[22.36476861652635, 7.5012190693964005]], [[27.63523138347365, 7.5012190693964005]]]

docs/manual.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ from ``openskill.models`` like so:
9494

9595
.. code:: python
9696
97-
>>> from openskill.models import BradelyTerryFull
97+
>>> from openskill.models import BradleyTerryFull
9898
>>> a1 = b1 = c1 = d1 = Rating()
9999
>>> rate([[a1], [b1], [c1], [d1]], rank=[4, 1, 3, 2], model=BradleyTerryFull)
100100
[[[17.09430584957905, 7.5012190693964005]], [[32.90569415042095, 7.5012190693964005]], [[22.36476861652635, 7.5012190693964005]], [[27.63523138347365, 7.5012190693964005]]]

0 commit comments

Comments
 (0)