Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docstring for TOML stdlib module #52834

Merged
merged 11 commits into from
Jan 15, 2024
Prev Previous commit
Next Next commit
Docstrings for TOML module placed in TOML.jl
  • Loading branch information
jam-khan committed Jan 13, 2024
commit 3755c6f32eea4895cb18953d87fe3f8ddc51308e
Empty file added base/docs/temp.cpp
Empty file.
6 changes: 0 additions & 6 deletions base/toml_parser.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

"""
TOML.jl is a Julia standard library for parsing and writing TOML v1.0 files.
This module provides functions to parse TOML strings and files into Julia data structures
and to serialize Julia data structures to TOML format. The module is designed to
handle exceptions, offers both regular and try-parse methods for development.
"""
module TOML
stevengj marked this conversation as resolved.
Show resolved Hide resolved

using Base: IdSet
Expand Down
6 changes: 6 additions & 0 deletions stdlib/TOML/src/TOML.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

"""
TOML.jl is a Julia standard library for parsing and writing TOML v1.0 files.
This module provides functions to parse TOML strings and files into Julia data structures
and to serialize Julia data structures to TOML format.
"""

stevengj marked this conversation as resolved.
Show resolved Hide resolved
module TOML

module Internals
Expand Down