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 11# This file is a part of Julia. License is MIT: https://julialang.org/license
22
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+ """
38module TOML
49
510using Base: IdSet
Original file line number Diff line number Diff line change 11# This file is a part of Julia. License is MIT: https://julialang.org/license
22
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+ """
38module TOML
49
510module Internals
Original file line number Diff line number Diff line change @@ -27,7 +27,5 @@ include("parse.jl")
2727@inferred TOML. parse (" foo = 3" )
2828
2929@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))
3331end
You can’t perform that action at this time.
0 commit comments