Skip to content

Commit 10ab79a

Browse files
committed
DOC: Fixes for latest numpydoc
1 parent 1fe00b5 commit 10ab79a

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

doc/governance.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
:orphan:
12

23
.. _governance:
34

@@ -71,12 +72,12 @@ the core developers which will stay open for a week. TC membership votes are
7172
subject to a two-third majority of all cast votes as well as a simple majority
7273
approval of all the current TC members. TC members who do not actively engage
7374
with the TC duties are expected to resign.
74-
75+
7576
The initial Technical Committee of scikit-learn consists of :user:`Alexandre Gramfort <agramfort>`,
7677
:user:`Olivier Grisel <ogrisel>`, :user:`Andreas Müller <amueller>`, :user:`Joel Nothman <jnothman>`,
7778
:user:`Hanmin Qin <qinhanmin2014>`, :user:`Gaël Varoquaux <GaelVaroquaux>`, and
7879
:user:`Roman Yurchak <rth>`.
79-
80+
8081
Decision Making Process
8182
=======================
8283
Decisions about the future of the project are made through discussion with all
@@ -110,11 +111,11 @@ are made according to the following rules:
110111
consensus), happens on the issue of pull-request page.
111112

112113
* **Changes to the API principles and changes to dependencies or supported
113-
versions** happen via a :ref:`slep` and follows the decision-making process outlined above.
114+
versions** happen via a :ref:`slep` and follows the decision-making process outlined above.
114115

115116
* **Changes to the governance model** use the same decision process outlined above.
116117

117-
118+
118119
If a veto -1 vote is cast on a lazy consensus, the proposer can appeal to the
119120
community and core developers and the change can be approved or rejected using
120121
the decision making procedure outlined above.

doc/other_distributions.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
:orphan:
12

23
.. _install_by_distribution:
34

doc/roadmap.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
.. _roadmap:
1+
:orphan:
2+
3+
.. _roadmap:
24

35
Roadmap
46
=======

sklearn/datasets/svmlight_format.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ def load_svmlight_file(f, n_features=None, dtype=np.float64,
133133
See also
134134
--------
135135
load_svmlight_files: similar function for loading multiple files in this
136-
format, enforcing the same number of features/columns on all of them.
136+
format, enforcing the same number of features/columns
137+
on all of them.
137138
138139
Examples
139140
--------

sklearn/metrics/pairwise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ def cosine_distances(X, Y=None):
537537
See also
538538
--------
539539
sklearn.metrics.pairwise.cosine_similarity
540-
scipy.spatial.distance.cosine (dense matrices only)
540+
scipy.spatial.distance.cosine : dense matrices only
541541
"""
542542
# 1.0 - cosine_similarity(X, Y) without copy
543543
S = cosine_similarity(X, Y)

0 commit comments

Comments
 (0)