From 63a659a58f3920b5fb78a894a964f40e06209969 Mon Sep 17 00:00:00 2001 From: cvanelteren Date: Tue, 26 Sep 2023 14:18:10 +0200 Subject: [PATCH] Fixed typo --- networkx/drawing/layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networkx/drawing/layout.py b/networkx/drawing/layout.py index a34cee08dd0..f62e6eabe46 100644 --- a/networkx/drawing/layout.py +++ b/networkx/drawing/layout.py @@ -1247,7 +1247,7 @@ def arc_layout(G: nx.Graph, subset_key="subset", radius=1, rotation=0) -> dict: -------- >>> subset_sizes = [5, 5, 4, 3, 2, 4, 4, 3] >>> G = nx.complete_multipartite_graph(*subset_sizes) - >>> pos = nx.arf_layout(G, subset_key = "subset") + >>> pos = nx.arc_layout(G, subset_key = "subset") """ import numpy as np