summaryrefslogtreecommitdiff
path: root/networkx/algorithms/approximation
diff options
context:
space:
mode:
authorAnurag Bhat <90216905+faze-geek@users.noreply.github.com>2023-01-06 00:38:44 +0530
committerGitHub <noreply@github.com>2023-01-05 11:08:44 -0800
commit83948b6dc61f507adb4cd1a71561eac9ed3b72ec (patch)
tree920e6bf5e900c9505712b6d5a59301b2493ff061 /networkx/algorithms/approximation
parent851aab2dad6dda73995b06d1ef01b95c3aa79891 (diff)
downloadnetworkx-83948b6dc61f507adb4cd1a71561eac9ed3b72ec.tar.gz
Fix typos in the networkx codebase (#6335)
* Fix_Typos * Commit_Suggestions
Diffstat (limited to 'networkx/algorithms/approximation')
-rw-r--r--networkx/algorithms/approximation/tests/test_ramsey.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/approximation/tests/test_ramsey.py b/networkx/algorithms/approximation/tests/test_ramsey.py
index 856a8ef2..32fe1fb8 100644
--- a/networkx/algorithms/approximation/tests/test_ramsey.py
+++ b/networkx/algorithms/approximation/tests/test_ramsey.py
@@ -11,7 +11,7 @@ def test_ramsey():
idens = nx.density(graph.subgraph(i))
assert idens == 0.0, "i-set not correctly found by ramsey!"
- # this trival graph has no cliques. should just find i-sets
+ # this trivial graph has no cliques. should just find i-sets
graph = nx.trivial_graph()
c, i = apxa.ramsey_R2(graph)
assert c == {0}, "clique not correctly found by ramsey!"