summaryrefslogtreecommitdiff
path: root/networkx/convert_matrix.py
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2018-02-14 19:34:33 -0500
committerDan Schult <dschult@colgate.edu>2018-02-14 19:34:33 -0500
commitfc281c12c61f0d60e6af57d12bbc4bc749b3c8b5 (patch)
treeb96c172aaabc18654c9a44cca20cb4809778e33a /networkx/convert_matrix.py
parent09eedd2a9578934a5dfc8757ca01873fd4ea17b6 (diff)
downloadnetworkx-fc281c12c61f0d60e6af57d12bbc4bc749b3c8b5.tar.gz
Misc. typos (#2872)
Found via `codespell -q 3 -I ../networkx-whitelist.txt` where whitelist consisted of: ``` ans childs iff nd te ```
Diffstat (limited to 'networkx/convert_matrix.py')
-rw-r--r--networkx/convert_matrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/convert_matrix.py b/networkx/convert_matrix.py
index ac361666..05d9811f 100644
--- a/networkx/convert_matrix.py
+++ b/networkx/convert_matrix.py
@@ -7,7 +7,7 @@
"""Functions to convert NetworkX graphs to and from numpy/scipy matrices.
The preferred way of converting data to a NetworkX graph is through the
-graph constuctor. The constructor calls the to_networkx_graph() function
+graph constructor. The constructor calls the to_networkx_graph() function
which attempts to guess the input type and convert it automatically.
Examples