From 9fb72dd3f4e93cf424808fea502dce288f680d38 Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Tue, 14 Sep 2021 11:17:57 -0400 Subject: [PATCH 1/2] Update docs/cugraph/source/index.rst Co-authored-by: Rick Ratzel <3039903+rlratzel@users.noreply.github.com> --- docs/cugraph/source/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cugraph/source/index.rst b/docs/cugraph/source/index.rst index 44ca28330d7..6b2d62fbdce 100644 --- a/docs/cugraph/source/index.rst +++ b/docs/cugraph/source/index.rst @@ -2,8 +2,8 @@ Welcome to cugraph's documentation! =================================== RAPIDS cuGraph is a library of graph algorithms that seamlessly integrates into the RAPIDS data science ecosystem and allows the data scientist to -easily call graph algorithms using data stored in a GPU DataFrame, -NetworkX Graphs, or even CuPy or SciPy sparse Matrix. +easily call graph algorithms using data stored in GPU DataFrames, +NetworkX Graphs, or even CuPy or SciPy sparse Matrices. .. toctree:: :maxdepth: 2 From f04c292e497ecbd96627a4b107ff8ab5cebca926 Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Tue, 14 Sep 2021 11:18:21 -0400 Subject: [PATCH 2/2] Update python/cugraph/cugraph/structure/graph_classes.py Co-authored-by: Rick Ratzel <3039903+rlratzel@users.noreply.github.com> --- python/cugraph/cugraph/structure/graph_classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cugraph/cugraph/structure/graph_classes.py b/python/cugraph/cugraph/structure/graph_classes.py index 2dbf0d003a5..564f6c6dac8 100644 --- a/python/cugraph/cugraph/structure/graph_classes.py +++ b/python/cugraph/cugraph/structure/graph_classes.py @@ -613,7 +613,7 @@ def __init__(self, m_graph=None): class MultiGraph(Graph): """ - A Multigraph, can be more than one edges between vertex pairs + A Multigraph; a Graph containing more than one edge between vertex pairs. """ def __init__(self, directed=False): super(MultiGraph, self).__init__(directed=directed)