From 35247d42281cb3afba83e68f8e94e8a961c955e2 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Tue, 19 Apr 2022 15:36:07 +0200 Subject: [PATCH] format files --- src/examples.jl | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/examples.jl b/src/examples.jl index 2b38ba81..2d1734d4 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -1278,11 +1278,18 @@ const _examples = PlotExample[ """ `areaplot` draws stacked area plots. """, - [:( - begin - areaplot(1:3, [1 2 3; 7 8 9; 4 5 6], seriescolor = [:red :green :blue], fillalpha = [0.2 0.3 0.4]) - end - )], + [ + :( + begin + areaplot( + 1:3, + [1 2 3; 7 8 9; 4 5 6], + seriescolor = [:red :green :blue], + fillalpha = [0.2 0.3 0.4], + ) + end + ), + ], ), ]