From 74a65209606a01d32db525dcaf99279c8c7ebc0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Miclu=C8=9Ba-C=C3=A2mpeanu?= Date: Sat, 14 Mar 2020 22:41:52 +0200 Subject: [PATCH] Rename _typeAliases to type_aliases --- src/plot.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plot.jl b/src/plot.jl index 42ae43eb..6dfc2a7c 100644 --- a/src/plot.jl +++ b/src/plot.jl @@ -54,7 +54,7 @@ function plot(args...; kw...) # create an empty Plot then process plt = Plot() # plt.user_attr = plotattributes - recipe_pipeline!(plt, plotattributes, args) + recipe_pipeline!(plt, plotattributes, args, type_aliases=_typeAliases) end # build a new plot from existing plots @@ -155,7 +155,7 @@ function plot!(plt::Plot, args...; kw...) plotattributes = KW(kw) preprocessArgs!(plotattributes) # merge!(plt.user_attr, plotattributes) - recipe_pipeline!(plt, plotattributes, args, _typeAliases=_typeAliases) + recipe_pipeline!(plt, plotattributes, args, type_aliases=_typeAliases) end # -------------------------------------------------------------------------------