Skip to content

Commit 877049c

Browse files
committed
fix: name docstring
1 parent 7549f6a commit 877049c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

nx_arangodb/classes/digraph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class DiGraph(Graph, nx.DiGraph):
6060
name : str (optional, default: None)
6161
Name of the graph in the database. If the graph already exists,
6262
the user can pass the name of the graph to connect to it. If
63-
the graph does not exist, the user can create a new graph by
64-
passing the name. NOTE: Must be used in conjunction with
63+
the graph does not exist, a General Graph will be created by
64+
passing the **name**. NOTE: Must be used in conjunction with
6565
**incoming_graph_data** if the user wants to persist the graph
6666
in ArangoDB.
6767

nx_arangodb/classes/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ class Graph(nx.Graph):
9494
name : str (optional, default: None)
9595
Name of the graph in the database. If the graph already exists,
9696
the user can pass the name of the graph to connect to it. If
97-
the graph does not exist, the user can create a new graph by
98-
passing the name. NOTE: Must be used in conjunction with
97+
the graph does not exist, a General Graph will be created by
98+
passing the **name**. NOTE: Must be used in conjunction with
9999
**incoming_graph_data** if the user wants to persist the graph
100100
in ArangoDB.
101101

nx_arangodb/classes/multidigraph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ class MultiDiGraph(MultiGraph, DiGraph, nx.MultiDiGraph):
7070
name : str (optional, default: None)
7171
Name of the graph in the database. If the graph already exists,
7272
the user can pass the name of the graph to connect to it. If
73-
the graph does not exist, the user can create a new graph by
74-
passing the name. NOTE: Must be used in conjunction with
73+
the graph does not exist, a General Graph will be created by
74+
passing the **name**. NOTE: Must be used in conjunction with
7575
**incoming_graph_data** if the user wants to persist the graph
7676
in ArangoDB.
7777

nx_arangodb/classes/multigraph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ class MultiGraph(Graph, nx.MultiGraph):
7171
name : str (optional, default: None)
7272
Name of the graph in the database. If the graph already exists,
7373
the user can pass the name of the graph to connect to it. If
74-
the graph does not exist, the user can create a new graph by
75-
passing the name. NOTE: Must be used in conjunction with
74+
the graph does not exist, a General Graph will be created by
75+
passing the **name**. NOTE: Must be used in conjunction with
7676
**incoming_graph_data** if the user wants to persist the graph
7777
in ArangoDB.
7878

0 commit comments

Comments
 (0)