Skip to content

Commit ae1748f

Browse files
authored
Merge pull request #1446 from drgrice1/statistical-plots-color-misname
Fix the casing of the svg color `MediumAquamarine` in `StatisticalPlots.pl`.
2 parents 3152eff + 992a628 commit ae1748f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

macros/graph/StatisticalPlots.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ =head3 OPTIONS
125125
(C<palette_name>) and number of colors to generate (C<num_colors>) (see L<COLOR
126126
PALETTES> for more information). If this is a reference to an array and the
127127
length of the array is smaller than the number of data values in the array
128-
referenced to by C<$data>, then the colors will be cycled.
128+
referenced to by C<$data>, then the colors will be cycled.
129129
130-
If C<fill_color> is included in the list of options, this will apply the same
131-
color to each bar. If neither C<fill_color> nor C<fill_colors> is included,
130+
If C<fill_color> is included in the list of options, this will apply the same
131+
color to each bar. If neither C<fill_color> nor C<fill_colors> is included,
132132
then the 'rainbow' palette will be used as default.
133133
134134
For example,
@@ -845,7 +845,7 @@ sub color_palette {
845845
if ($palette_name eq 'rainbow') {
846846
return [ 'Violet', 'blue', 'green', 'yellow', 'orange', 'red' ];
847847
} elsif ($palette_name eq 'greens') {
848-
return [ 'Green', 'Olive', 'DarkGreen', 'LawnGreen', 'MediumAquaMarine', 'LimeGreen' ];
848+
return [ 'Green', 'Olive', 'DarkGreen', 'LawnGreen', 'MediumAquamarine', 'LimeGreen' ];
849849
} elsif ($palette_name eq 'blues') {
850850
return [ 'Blue', 'MidnightBlue', 'MediumBlue', 'LightSkyBlue', 'DodgerBlue', 'DarkBlue', 'CornflowerBlue' ];
851851
} elsif ($palette_name eq 'reds') {

0 commit comments

Comments
 (0)