Skip to content

Commit 2ff0d29

Browse files
committed
Fix doc errors
1 parent df48e5e commit 2ff0d29

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

docs/make.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ makedocs(
3737
"Mutagenesis" => "datasets/Mutagenesis.md",
3838
"Titanic" => "datasets/Titanic.md",
3939
],
40-
4140
"Text" => Any[
4241
"PTBLM" => "datasets/PTBLM.md",
4342
"UD_English" => "datasets/UD_English.md",
@@ -52,9 +51,11 @@ makedocs(
5251

5352
],
5453
"Utils" => "utils.md",
54+
"Data Containers" => "containers/overview.md",
5555
"LICENSE.md",
5656
],
57-
strict = true
57+
strict = true,
58+
checkdocs = :exports
5859
)
5960

6061

docs/src/containers/overview.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Dataset Containers
2+
3+
MLDatasets.jl contains several reusable data containers for accessing datasets in common storage formats. This feature is a work-in-progress and subject to change.
4+
5+
```@docs
6+
FileDataset
7+
TableDataset
8+
HDF5Dataset
9+
Base.close(::HDF5Dataset)
10+
JLD2Dataset
11+
Base.close(::JLD2Dataset)
12+
CachedDataset
13+
MLDatasets.make_cache
14+
```

0 commit comments

Comments
 (0)