Skip to content

Commit 1a1958f

Browse files
authored
Fix a couple of invalidations from extending == (#2699)
1 parent b1ec6de commit 1a1958f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/HistoricaStdlibGenerator/generate_historical_stdlibs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ end
222222

223223
# Helper function for getting these printed out in a nicely-sorted order
224224
function print_sorted(io::IO, d::Dict; indent::Int=0)
225-
println(io, "Dict(")
225+
println(io, "Dict{UUID,Tuple{String,Union{String,Nothing}}}(")
226226
for pair in sort(collect(d), by = kv-> kv[2][1])
227227
println(io, " "^indent, repr(pair[1]), " => ", repr(pair[2]), ",")
228228
end

src/Operations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ end
575575

576576
function collect_artifacts(pkg_root::String; platform::AbstractPlatform=HostPlatform())
577577
# Check to see if this package has an (Julia)Artifacts.toml
578-
artifacts_tomls = Tuple{String,Dict}[]
578+
artifacts_tomls = Tuple{String,Base.TOML.TOMLDict}[]
579579
for f in artifact_names
580580
artifacts_toml = joinpath(pkg_root, f)
581581
if isfile(artifacts_toml)

0 commit comments

Comments
 (0)