Skip to content

Commit

Permalink
fix doc typoe (#4149)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Feb 25, 2022
1 parent c37cb15 commit 95284c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/notes/heterogeneous.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ First, we can create a data object of type :class:`torch_geometric.data.HeteroDa
data['paper', 'cites', 'paper'].edge_index = ... # [2, num_edges_cites]
data['author', 'writes', 'paper'].edge_index = ... # [2, num_edges_writes]
data['author', 'affiliated_with', 'institution'].edge_index = ... # [2, num_edges_affiliated]
data['author', 'has_topic', 'institution'].edge_index = ... # [2, num_edges_topic]
data['paper', 'has_topic', 'field_of_study'].edge_index = ... # [2, num_edges_topic]
data['paper', 'cites', 'paper'].edge_attr = ... # [num_edges_cites, num_features_cites]
data['author', 'writes', 'paper'].edge_attr = ... # [num_edges_writes, num_features_writes]
Expand Down

0 comments on commit 95284c6

Please sign in to comment.