Skip to content

Commit 8e6cc61

Browse files
update for Documenter 1
1 parent 5a60b1e commit 8e6cc61

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/make.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Pkg
22
Pkg.activate(@__DIR__)
33
CI = get(ENV, "CI", nothing) == "true"
4-
using Documenter, NCDatasets
4+
using Documenter, NCDatasets, CommonDataModel
55

66
makedocs(
7-
modules = [NCDatasets],
7+
modules = [NCDatasets, CommonDataModel],
88
sitename= "NCDatasets.jl",
99
doctest = false,
1010
format = Documenter.HTML(
@@ -21,6 +21,7 @@ makedocs(
2121
"Experimental features" => "experimental.md",
2222
"Tutorials" => "tutorials.md",
2323
],
24+
checkdocs = :none,
2425
)
2526

2627
if CI

docs/src/dataset.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ Otherwise, we attempt to use standard structures from the Julia standard library
3131
## Groups
3232

3333
```@docs
34-
defGroup(ds::NCDataset,groupname)
34+
defGroup
3535
getindex(g::NCDatasets.Groups,groupname::AbstractString)
3636
Base.keys(g::NCDatasets.Groups)
37-
groupname(ds::NCDataset)
3837
```
3938

4039
## Common methods

src/groupes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function Base.getindex(g::Groups,groupname::SymbolOrString)
3232
end
3333

3434
"""
35-
defGroup(ds::NCDataset,groupname, attrib = []))
35+
defGroup(ds::NCDataset,groupname; attrib = []))
3636
3737
Create the group with the name `groupname` in the dataset `ds`.
3838
`attrib` is a list of attribute name and attribute value pairs (see `NCDataset`).

0 commit comments

Comments
 (0)