File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2
2
3
+ """
4
+ `Base.TOML` is an undocumented internal part of Julia's TOML parser
5
+ implementation. Users should call the the documented interface in the
6
+ TOML.jl standard library instead (by `import TOML` or `using TOML`).
7
+ """
3
8
module TOML
4
9
5
10
using Base: IdSet
Original file line number Diff line number Diff line change 1
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2
2
3
+ """
4
+ TOML.jl is a Julia standard library for parsing and writing TOML v1.0 files.
5
+ This module provides functions to parse TOML strings and files into Julia data structures
6
+ and to serialize Julia data structures to TOML format.
7
+ """
3
8
module TOML
4
9
5
10
module Internals
Original file line number Diff line number Diff line change @@ -27,7 +27,5 @@ include("parse.jl")
27
27
@inferred TOML. parse (" foo = 3" )
28
28
29
29
@testset " Docstrings" begin
30
- undoc = Docs. undocumented_names (TOML)
31
- @test_broken isempty (undoc)
32
- @test undoc == [:TOML ]
30
+ @test isempty (Docs. undocumented_names (TOML))
33
31
end
You can’t perform that action at this time.
0 commit comments