Unverified Commit 290e1e9d authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

fix indent typo in docstring

parent 02025989
...@@ -239,12 +239,12 @@ class CSCSamplingGraph: ...@@ -239,12 +239,12 @@ class CSCSamplingGraph:
floating-point or boolean tensor with the number of elements equal floating-point or boolean tensor with the number of elements equal
to the number of edges. to the number of edges.
Returns Returns
------- -------
SampledSubgraph SampledSubgraph
The sampled subgraph. The sampled subgraph.
Examples Examples
-------- --------
>>> indptr = torch.LongTensor([0, 3, 5, 7]) >>> indptr = torch.LongTensor([0, 3, 5, 7])
>>> indices = torch.LongTensor([0, 1, 4, 2, 3, 0, 1]) >>> indices = torch.LongTensor([0, 1, 4, 2, 3, 0, 1])
>>> type_per_edge = torch.LongTensor([0, 0, 1, 0, 1, 0, 1]) >>> type_per_edge = torch.LongTensor([0, 0, 1, 0, 1, 0, 1])
......
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