Skip to content

Commit

Permalink
Use concrete types in MimeExt
Browse files Browse the repository at this point in the history
Code generated to work on this Dict shows up as a minor source
of invalidation when loading packages that define new
`AbstractString` types.
  • Loading branch information
timholy authored Feb 9, 2022
1 parent 04c450c commit 769adbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mime_ext.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Mime_ext

export MimeExt

MimeExt = Dict{AbstractString,AbstractString}(
MimeExt = Dict{String,String}(
"ez" => "application/andrew-inset",
"anx" => "application/annodex",
"atom" => "application/atom+xml",
Expand Down

0 comments on commit 769adbe

Please sign in to comment.