Skip to content

DOC fix typo in load_boston docstring #21197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sklearn/datasets/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ def load_linnerud(*, return_X_y=False, as_frame=False):
dataset unless the purpose of the code is to study and educate about
ethical issues in data science and machine learning.

In this case special case, you can fetch the dataset from the original
In this special case, you can fetch the dataset from the original
source::

import pandas as pd
Expand Down Expand Up @@ -1177,7 +1177,7 @@ def load_boston(*, return_X_y=False):
this dataset unless the purpose of the code is to study and educate
about ethical issues in data science and machine learning.

In this case special case, you can fetch the dataset from the original
In this special case, you can fetch the dataset from the original
source::

import pandas as pd # doctest: +SKIP
Expand Down