8000 [MRG+1] Fix typos in documentation (#9878) · scikit-learn/scikit-learn@3c1e23a · GitHub
[go: up one dir, main page]

Skip to content

Commit 3c1e23a

Browse files
committed
[MRG+1] Fix typos in documentation (#9878)
* Fix grammatical error in * Correct capitalization of "GitHub" Used command `find . -type f -exec sed -i 's/Github/GitHub/g' {} \;` (h/t: https://stackoverflow.com/a/15402972) # Conflicts: # doc/developers/contributing.rst
1 parent bd326a9 commit 3c1e23a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ list or on the GitHub issue).
170170

171171
Filing bugs
172172
-----------
173-
We use Github issues to track all bugs and feature requests; feel free to
173+
We use GitHub issues to track all bugs and feature requests; feel free to
174174
open an issue if you have found a bug or wish to see a feature implemented.
175175

176176
It is recommended to check that your issue complies with the

doc/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ please make sure to include the full traceback that you obtain when running the
5555
reproduction script.
5656

5757
For bug reports or feature requests, please make use of the
58-
`issue tracker on Github <https://github.com/scikit-learn/scikit-learn/issues>`_.
58+
`issue tracker on GitHub <https://github.com/scikit-learn/scikit-learn/issues>`_.
5959

6060
There is also a `scikit-learn Gitter channel
6161
<https://gitter.im/scikit-learn/scikit-learn>`_ where some users and developers

doc/sphinxext/sphinx_issues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
def user_role(name, rawtext, text, lineno,
3434
inliner, options=None, content=None):
3535
"""Sphinx role for linking to a user profile. Defaults to linking to
36-
Github profiles, but the profile URIS can be configured via the
36+
GitHub profiles, but the profile URIS can be configured via the
3737
``issues_user_uri`` config value.
3838
3939
Example: ::
@@ -104,7 +104,7 @@ def setup(app):
104104
# Format template for issues URI
105105
# e.g. 'https://github.com/sloria/marshmallow/issues/{issue}
106106
app.add_config_value('issues_uri', default=None, rebuild='html')
107-
# Shortcut for Github, e.g. 'sloria/marshmallow'
107+
# Shortcut for GitHub, e.g. 'sloria/marshmallow'
108108
app.add_config_value('issues_github_path', default=None, rebuild='html')
109109
# Format template for user profile URI
110110
# e.g. 'https://github.com/{user}'

doc/themes/scikit-learn/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ <h2>Machine Learning in Python</h2>
203203
{% endblock %}
204204

205205
{% block content %}
206-
<!-- Github "fork me" ribbon -->
206+
<!-- GitHub "fork me" ribbon -->
207207
<a href="https://github.com/scikit-learn/scikit-learn">
208208
<img class="fork-me"
209209
style="position: absolute; top: 0; right: 0; border: 0;"

sklearn/linear_model/tests/test_bayes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_bayesian_on_diabetes():
3636

3737

3838
def test_bayesian_ridge_parameter():
39-
# Test correctness of lambda_ and alpha_ parameters (Github issue #8224)
39+
# Test correctness of lambda_ and alpha_ parameters (GitHub issue #8224)
4040
X = np.array([[1, 1], [3, 4], [5, 7], [4, 1], [2, 6], [3, 10], [3, 2]])
4141
y = np.array([1, 2, 3, 2, 0, 4, 5]).T
4242

0 commit comments

Comments
 (0)
0