summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorMiroslav Šedivý <6774676+eumiro@users.noreply.github.com>2020-12-03 08:25:37 +0100
committerGitHub <noreply@github.com>2020-12-02 23:25:37 -0800
commit0ead17fb18334040b84dd614d1f12d6d3fa9e130 (patch)
tree0b4a14a6de6bd227e9c377f9b09956398a781f1e /doc/release
parent1bbe6aaf473609e7b9466d01dc02027bf304d5ca (diff)
downloadnetworkx-0ead17fb18334040b84dd614d1f12d6d3fa9e130.tar.gz
DOC: Remove repeated words (#4410)
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/api_1.6.rst2
-rw-r--r--doc/release/release_2.0.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/release/api_1.6.rst b/doc/release/api_1.6.rst
index 9d45d621..bf992d3d 100644
--- a/doc/release/api_1.6.rst
+++ b/doc/release/api_1.6.rst
@@ -101,7 +101,7 @@ Other
* degree connectivity
average_in_degree_connectivity and average_out_degree_connectivity have
- have been replaced with
+ been replaced with
average_degree_connectivity(G, source='in', target='in')
diff --git a/doc/release/release_2.0.rst b/doc/release/release_2.0.rst
index 544d9c7c..c2aa8792 100644
--- a/doc/release/release_2.0.rst
+++ b/doc/release/release_2.0.rst
@@ -126,7 +126,7 @@ API Changes
>>> nx.minimum_spanning_tree(G, 'mass') # old
>>> nx.minimum_spanning_tree(G, weight='mass') # new
- In the above, we are still relying on the the functions being imported into the
+ In the above, we are still relying on the functions being imported into the
top-level namespace. We do not have immediate plans to deprecate this approach,
but we recommend the following instead::