summaryrefslogtreecommitdiff
path: root/networkx/relabel.py
diff options
context:
space:
mode:
authorMoradnejad <i.moradnejad@gmail.com>2019-02-18 13:16:42 +0330
committerDan Schult <dschult@colgate.edu>2019-02-18 20:46:42 +1100
commit2db5f8663deacc501c7472c3a60884a2ca8be45a (patch)
tree80a0ef1bc5c0596963dfc4e65a708d67dba68004 /networkx/relabel.py
parente02d18cbbc83e97a21a1255acd6948b19ced28a1 (diff)
downloadnetworkx-2db5f8663deacc501c7472c3a60884a2ca8be45a.tar.gz
Replacing `Return` to `Returns` in docs for functions (#3301)
* Fixed problem in documentation view of this function * Replacing `Return` to `Returns` in function docs
Diffstat (limited to 'networkx/relabel.py')
-rw-r--r--networkx/relabel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/relabel.py b/networkx/relabel.py
index 7385878e..a8931aa8 100644
--- a/networkx/relabel.py
+++ b/networkx/relabel.py
@@ -166,7 +166,7 @@ def _relabel_copy(G, mapping):
def convert_node_labels_to_integers(G, first_label=0, ordering="default",
label_attribute=None):
- """Return a copy of the graph G with the nodes relabeled using
+ """Returns a copy of the graph G with the nodes relabeled using
consecutive integers.
Parameters