summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCUI Hao <cuihao.leo@gmail.com>2021-04-24 14:33:49 -0700
committerGitHub <noreply@github.com>2021-04-24 14:33:49 -0700
commit50e6a77b0df2def5ca6fa3ed59a80fc0464d6cc0 (patch)
tree86e6a0d0395d03a5eb7861c788352eb3b10c9b1c
parent005e1f9c40056d0da94066953e51991a4d222487 (diff)
downloadnetworkx-50e6a77b0df2def5ca6fa3ed59a80fc0464d6cc0.tar.gz
fix typo in docstring (ismorphism -> isomorphism) (#4756)
-rw-r--r--networkx/algorithms/isomorphism/isomorphvf2.py2
-rw-r--r--networkx/algorithms/isomorphism/temporalisomorphvf2.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/networkx/algorithms/isomorphism/isomorphvf2.py b/networkx/algorithms/isomorphism/isomorphvf2.py
index 2a92e298..424a04cb 100644
--- a/networkx/algorithms/isomorphism/isomorphvf2.py
+++ b/networkx/algorithms/isomorphism/isomorphvf2.py
@@ -3,7 +3,7 @@
VF2 Algorithm
*************
-An implementation of VF2 algorithm for graph ismorphism testing.
+An implementation of VF2 algorithm for graph isomorphism testing.
The simplest interface to use this module is to call networkx.is_isomorphic().
diff --git a/networkx/algorithms/isomorphism/temporalisomorphvf2.py b/networkx/algorithms/isomorphism/temporalisomorphvf2.py
index 50a823a8..131bb6d9 100644
--- a/networkx/algorithms/isomorphism/temporalisomorphvf2.py
+++ b/networkx/algorithms/isomorphism/temporalisomorphvf2.py
@@ -3,7 +3,7 @@
Time-respecting VF2 Algorithm
*****************************
-An extension of the VF2 algorithm for time-respecting graph ismorphism
+An extension of the VF2 algorithm for time-respecting graph isomorphism
testing in temporal graphs.
A temporal graph is one in which edges contain a datetime attribute,