X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..efd381ac74c9da678e6343473996a080b9eeed26:/src/xbt/graph.c diff --git a/src/xbt/graph.c b/src/xbt/graph.c index 3dfe275891..9801b9b66e 100644 --- a/src/xbt/graph.c +++ b/src/xbt/graph.c @@ -101,13 +101,13 @@ void xbt_graph_node_set_data(xbt_node_t node, void *data) node->data = data; } -/** @brief Get the user data associated to a edge */ +/** @brief Get the user data associated to an edge */ void* xbt_graph_edge_get_data(const s_xbt_edge_t* edge) { return edge->data; } -/** @brief Set the user data associated to a edge */ +/** @brief Set the user data associated to an edge */ void xbt_graph_edge_set_data(xbt_edge_t edge, void *data) { edge->data = data;