diff --git a/nx_arangodb/classes/digraph.py b/nx_arangodb/classes/digraph.py index 8467bc9..3bfb943 100644 --- a/nx_arangodb/classes/digraph.py +++ b/nx_arangodb/classes/digraph.py @@ -60,8 +60,8 @@ class DiGraph(Graph, nx.DiGraph): name : str (optional, default: None) Name of the graph in the database. If the graph already exists, the user can pass the name of the graph to connect to it. If - the graph does not exist, the user can create a new graph by - passing the name. NOTE: Must be used in conjunction with + the graph does not exist, a General Graph will be created by + passing the **name**. NOTE: Must be used in conjunction with **incoming_graph_data** if the user wants to persist the graph in ArangoDB. diff --git a/nx_arangodb/classes/graph.py b/nx_arangodb/classes/graph.py index 27b0c39..336cc3b 100644 --- a/nx_arangodb/classes/graph.py +++ b/nx_arangodb/classes/graph.py @@ -94,8 +94,8 @@ class Graph(nx.Graph): name : str (optional, default: None) Name of the graph in the database. If the graph already exists, the user can pass the name of the graph to connect to it. If - the graph does not exist, the user can create a new graph by - passing the name. NOTE: Must be used in conjunction with + the graph does not exist, a General Graph will be created by + passing the **name**. NOTE: Must be used in conjunction with **incoming_graph_data** if the user wants to persist the graph in ArangoDB. diff --git a/nx_arangodb/classes/multidigraph.py b/nx_arangodb/classes/multidigraph.py index 7ca7652..f115ab8 100644 --- a/nx_arangodb/classes/multidigraph.py +++ b/nx_arangodb/classes/multidigraph.py @@ -70,8 +70,8 @@ class MultiDiGraph(MultiGraph, DiGraph, nx.MultiDiGraph): name : str (optional, default: None) Name of the graph in the database. If the graph already exists, the user can pass the name of the graph to connect to it. If - the graph does not exist, the user can create a new graph by - passing the name. NOTE: Must be used in conjunction with + the graph does not exist, a General Graph will be created by + passing the **name**. NOTE: Must be used in conjunction with **incoming_graph_data** if the user wants to persist the graph in ArangoDB. diff --git a/nx_arangodb/classes/multigraph.py b/nx_arangodb/classes/multigraph.py index 1a4b1eb..c494d34 100644 --- a/nx_arangodb/classes/multigraph.py +++ b/nx_arangodb/classes/multigraph.py @@ -71,8 +71,8 @@ class MultiGraph(Graph, nx.MultiGraph): name : str (optional, default: None) Name of the graph in the database. If the graph already exists, the user can pass the name of the graph to connect to it. If - the graph does not exist, the user can create a new graph by - passing the name. NOTE: Must be used in conjunction with + the graph does not exist, a General Graph will be created by + passing the **name**. NOTE: Must be used in conjunction with **incoming_graph_data** if the user wants to persist the graph in ArangoDB.