Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanelteren committed Sep 26, 2023
1 parent 8f1bcf3 commit 63a659a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion networkx/drawing/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 63a659a

Please sign in to comment.