Skip to content

Commit

Permalink
handle some more errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BeastyBlacksmith committed Jul 13, 2024
1 parent 528a4cc commit 705fc70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions PlotsBase/src/plot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ function Base.show(io::IO, plt::Plot)
end
do_show = true
for (i, ekwargs) enumerate(sp_ekwargs)
for (key, value) ekwargs
for (key, value) pairs(ekwargs)
do_show && println(io, " SubplotPlot{$i}:")
println(io, " "^4, key, ": ", value)
do_show = false
end
do_show = true
end
for (i, ekwargs) enumerate(s_ekwargs)
for (key, value) ekwargs
for (key, value) pairs(ekwargs)
do_show && println(io, " Series{$i}:")
println(io, " "^4, key, ": ", value)
do_show = false
Expand Down
2 changes: 2 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DemoCards = "311a05b2-6137-4a5a-b473-18580a3d38b5"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
FreeType = "b38be410-82b0-50bf-ab77-7b57e271db43"
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
Expand Down
10 changes: 5 additions & 5 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -671,11 +671,11 @@ function main()
"Contributing" => "contributing.md",
"Ecosystem" => [
# "StatsPlots" => "generated/statsplots.md", #TODO: uncomment once StatsPlots is ready
"GraphRecipes" => [
"Introduction" => "GraphRecipes/introduction.md",
"Examples" => "GraphRecipes/examples.md",
"Attributes" => "generated/graph_attributes.md",
],
# "GraphRecipes" => [
# "Introduction" => "GraphRecipes/introduction.md",
# "Examples" => "GraphRecipes/examples.md",
# "Attributes" => "generated/graph_attributes.md",
# ], #TODO: uncomment once GraphRecipes is ready
"UnitfulExt" => [
"Introduction" => "UnitfulExt/unitfulext.md",
"Examples" => [
Expand Down

0 comments on commit 705fc70

Please sign in to comment.