Skip to content

Commit 4448af7

Browse files
fix gnnlib
1 parent 0aeda9d commit 4448af7

File tree

12 files changed

+18
-14
lines changed

12 files changed

+18
-14
lines changed

GNNLux/docs/src/api/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GNNLux
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
## Basic Layers

GNNLux/docs/src/api/conv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GNNLux
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Convolutional Layers

GNNLux/docs/src/api/temporalconv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GNNLux
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Temporal Graph-Convolutional Layers

GNNlib/docs/src/api/messagepassing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GNNlib
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Message Passing

GNNlib/docs/src/api/utils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GNNlib
3-
CollpasedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Utility Functions

GraphNeuralNetworks/docs/make.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ makedocs(;
3636
prettyurls = get(ENV, "CI", nothing) == "true",
3737
assets = [],
3838
size_threshold=nothing,
39-
size_threshold_warn=200000),
39+
size_threshold_warn=2000000),
4040
sitename = "GraphNeuralNetworks.jl",
4141
pages = [
4242

@@ -65,6 +65,10 @@ makedocs(;
6565

6666
"API Reference" => [
6767
"Graphs (GNNGraphs.jl)" => [
68+
"GNNGraph" => "GNNGraphs/api/gnngraph.md",
69+
"GNNHeteroGraph" => "GNNGraphs/api/heterograph.md",
70+
"TemporalSnapshotsGNNGraph" => "GNNGraphs/api/temporalgraph.md",
71+
"Samplers" => "GNNGraphs/api/samplers.md",
6872
]
6973

7074
"Message Passing (GNNlib.jl)" => [

GraphNeuralNetworks/docs/src/api/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GraphNeuralNetworks
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Basic Layers

GraphNeuralNetworks/docs/src/api/conv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GraphNeuralNetworks
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Convolutional Layers

GraphNeuralNetworks/docs/src/api/heteroconv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GraphNeuralNetworks
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Hetero Graph-Convolutional Layers

GraphNeuralNetworks/docs/src/api/pool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```@meta
22
CurrentModule = GraphNeuralNetworks
3-
CollapsedDocString = true
3+
CollapsedDocStrings = true
44
```
55

66
# Pooling Layers

0 commit comments

Comments
 (0)