Skip to content

Commit

Permalink
Merge branch 'branch-21.10' of https://github.com/BradReesWork/cugraph
Browse files Browse the repository at this point in the history
…into branch-21.10
  • Loading branch information
BradReesWork committed Sep 14, 2021
2 parents f35d737 + f04c292 commit 794b730
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/cugraph/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/structure/graph_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,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)
Expand Down

0 comments on commit 794b730

Please sign in to comment.