"graphbolt/src/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "74d88bf832a52b7f37b0b9383a9fdb0b91eda346"
Unverified Commit 6d3610c4 authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[dev] fix typo in docstring

parent fd4ce7cc
...@@ -338,7 +338,7 @@ def compact_csc_format( ...@@ -338,7 +338,7 @@ def compact_csc_format(
Examples Examples
-------- --------
>>> import dgl.graphbolt as gb >>> import dgl.graphbolt as gb
>>> N1 = torch.LongTecnsor([1, 2, 2]) >>> N1 = torch.LongTensor([1, 2, 2])
>>> N2 = torch.LongTensor([5, 6, 5]) >>> N2 = torch.LongTensor([5, 6, 5])
>>> csc_formats = {"n2:e2:n1": CSCFormatBase(indptr=torch.tensor([0, 1]), >>> csc_formats = {"n2:e2:n1": CSCFormatBase(indptr=torch.tensor([0, 1]),
... indices=torch.tensor([5]))} ... indices=torch.tensor([5]))}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment