Skip to content

Commit 2853a59

Browse files
committed
fix typos
1 parent 518f84e commit 2853a59

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/kwds.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -262,17 +262,17 @@ BAND_DEFAULT = SGKwds(
262262
SEGMENT_DEFAULT = SGKwds(
263263
:x => __dic(:default=> 0, :__ord=>0, :__cat => "Required", :__doc=>"The column to be used as x coordinate. User must pass either this or the `y` argument."),
264264
:y => __dic(:default=> 0, :__ord=>0, :__cat=> "Required", :__doc=>"The column to be used as y coordinate. User must pass either this or the `x` argument."),
265-
:lower => __dic(:default=> 0, :__ord=>0, :__cat=> "Required", :__doc=>"The lower values for the band plot. User can pass a column or a Float value."),
266-
:upper => __dic(:default=> 0, :__ord=>0, :__cat=> "Required", :__doc=>"The upper values for the band plot. User can pass a column or a Float value."),
267-
:group => __dic(:default=> nothing, :__ord=>2, :__cat=>"Grouping", :__doc=>"The name of column for grouping observation. Each group of observations will create seperate band plot."),
265+
:lower => __dic(:default=> 0, :__ord=>0, :__cat=> "Required", :__doc=>"The lower values for segments. User can pass a column or a Float value."),
266+
:upper => __dic(:default=> 0, :__ord=>0, :__cat=> "Required", :__doc=>"The upper values for segments. User can pass a column or a Float value."),
267+
:group => __dic(:default=> nothing, :__ord=>2, :__cat=>"Grouping", :__doc=>"The name of column for grouping observation. Each group of observations will create seperate segment lines."),
268268

269269
:x2axis => __dic(:default=> false, :__ord=>5, :__cat=>"Axes options", :__doc=>Kwds_docs[:x2axis]),
270270
:y2axis => __dic(:default=> false, :__ord=>5, :__cat=>"Axes options", :__doc=>Kwds_docs[:y2axis]),
271271

272-
:opacity => __dic(:default=> 1, :__ord=>3, :__cat=>"Band appearance", :__doc=>Kwds_docs[:opacity]),
273-
:color => __dic(:default=> "#4682b4", :__ord=>3, :__cat=>"Band appearance", :__doc=>Kwds_docs[:color_grad]),
272+
:opacity => __dic(:default=> 1, :__ord=>3, :__cat=>"Segment appearance", :__doc=>Kwds_docs[:opacity]),
273+
:color => __dic(:default=> "#4682b4", :__ord=>3, :__cat=>"Segment appearance", :__doc=>Kwds_docs[:color_grad]),
274274

275-
:thickness => __dic(:default=> 1, :__ord=>1, :__cat=>"Band Options", :__doc=>"The thickness of the mark"),
275+
:thickness => __dic(:default=> 1, :__ord=>1, :__cat=>"Segment Options", :__doc=>"The thickness of the mark"),
276276

277277
:legend => __dic(:default=> nothing, :__ord=>6, :__cat=>"Legend", :__doc=>Kwds_docs[:legend]),
278278

0 commit comments

Comments
 (0)