-
Notifications
You must be signed in to change notification settings - Fork 72
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
Fix typos on docstrings #288
Conversation
💖 Thanks for opening your first pull request! 💖 Please make sure you read the following:
A few things to keep in mind:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @jcrawford, thanks for opening the PR.
I leave a single suggestion on one of the changes.
After it's addressed we can merge this.
@@ -15,7 +15,7 @@ def median_distance(coordinates, k_nearest=1, projection=None): | |||
distance to its *k_nearest* neighbors among the other points in the | |||
dataset. Sparse uniformly spaced datasets can use *k_nearest* of 1. | |||
Datasets with points clustered into tight groups (e.g., densely sampled | |||
along a flight line or ship treck) will have very small distances to the | |||
along a flight line or ship wreck) will have very small distances to the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
along a flight line or ship wreck) will have very small distances to the | |
along a flight line or ship track) will have very small distances to the |
The author hasn't addressed the requested changes after 14 days, so we decided to close this PR for now. |
Fix typos on functions docstrings from
distances.py
andmodel_selection.py
.Fixes #287