Skip to content

Commit

Permalink
Remove a bit misleading comment and change the expression. (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paalon authored Jun 14, 2024
1 parent b1084b6 commit 740c336
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/YAML.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ include("nodes.jl")
include("resolver.jl")
include("composer.jl")
include("constructor.jl")
include("writer.jl") # write Julia dictionaries to YAML files
include("writer.jl")

const _constructor = Union{Nothing, Dict}
const _dicttype = Union{Type,Function}
Expand Down
2 changes: 1 addition & 1 deletion src/writer.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Writing Julia dictionaries to YAML files is implemented with multiple dispatch and recursion:
# Writing Julia collections to YAML files is implemented with multiple dispatch and recursion:
# Depending on the value type, Julia chooses the appropriate _print function, which may add a
# level of recursion.
#
Expand Down

0 comments on commit 740c336

Please sign in to comment.