Skip to content
This repository was archived by the owner on Jul 13, 2021. It is now read-only.

Commit 19749e1

Browse files
authored
Merge pull request #419 from JuliaPlots/as/fixtypo
Fix a typo in propertynames(scene)
2 parents 8171d54 + 264328e commit 19749e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scenes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ end
210210
# Base overloads for Scene
211211

212212
Base.haskey(scene::Scene, key::Symbol) = haskey(scene.attributes, key)
213-
Base.propertynames(scene::Scene) = fieldnames(scene) propertynames(scene.attributes)
213+
Base.propertynames(scene::Scene) = fieldnames(Scene) propertynames(scene.attributes)
214214

215215
function Base.getindex(scene::Scene, key::Symbol)
216216
return haskey(scene.attributes, key) ? scene.attributes[key] : scene.theme[key]

0 commit comments

Comments
 (0)