Skip to content

Commit c4f92c8

Browse files
committed
Remove 'type' from @param.
1 parent 9bf633b commit c4f92c8

File tree

1 file changed

+22
-22
lines changed
  • plot-api/src/commonMain/kotlin/jetbrains/letsPlot/scale

1 file changed

+22
-22
lines changed

plot-api/src/commonMain/kotlin/jetbrains/letsPlot/scale/DateTime.kt

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ import jetbrains.letsPlot.intern.checkScaleExpand
1515
/**
1616
* Position scale x for date/time data.
1717
*
18-
* @param name string
18+
* @param name
1919
* The name of the scale - used as the axis label or the legend title. If None, the default, the name of the scale
2020
* is taken from the first mapping used for that aesthetic.
21-
* @param breaks list of numeric
21+
* @param breaks
2222
* A numeric vector of positions (of ticks).
23-
* @param labels list of strings
23+
* @param labels
2424
* A vector of labels (on ticks).
25-
* @param limits pair
25+
* @param limits
2626
* A numeric vector of length two providing limits of the scale.
27-
* @param expand list of numbers
27+
* @param expand
2828
* A numeric vector of length two giving multiplicative and additive expansion constants.
2929
* The vector size == 1 => only multiplicative expand (and additive expand by default).
3030
* Defaults: multiplicative = 0.05, additive = 0.
3131
* @param naValue
3232
* Missing values will be replaced with this value.
33-
* @param format string
33+
* @param format
3434
* Defines the format for labels on the scale. Also applies to `breaks`.
3535
*
3636
*
@@ -75,22 +75,22 @@ fun scaleXDateTime(
7575
/**
7676
* Position scale y for date/time data.
7777
*
78-
* @param name string
78+
* @param name
7979
* The name of the scale - used as the axis label or the legend title. If None, the default, the name of the scale
8080
* is taken from the first mapping used for that aesthetic.
81-
* @param breaks list of numerics
81+
* @param breaks
8282
* A numeric vector of positions (of ticks).
83-
* @param labels list of strings
83+
* @param labels
8484
* A vector of labels (on ticks).
85-
* @param limits pair
85+
* @param limits
8686
* A numeric vector of length two providing limits of the scale.
87-
* @param expand list of numbers
87+
* @param expand
8888
* A numeric vector of length two giving multiplicative and additive expansion constants.
8989
* The vector size == 1 => only multiplicative expand (and additive expand by default).
9090
* Defaults: multiplicative = 0.05, additive = 0.
9191
* @param naValue
9292
* Missing values will be replaced with this value.
93-
* @param format string
93+
* @param format
9494
* Defines the format for labels on the scale. Also applies to `breaks`.
9595
*
9696
*
@@ -135,16 +135,16 @@ fun scaleYDateTime(
135135
/**
136136
* Position scale x for data representing "time delta" values expressed in milliseconds.
137137
*
138-
* @param name string
138+
* @param name
139139
* The name of the scale - used as the axis label or the legend title.
140140
* If None, the default, the name of the scale is taken from the first mapping used for that aesthetic.
141-
* @param breaks list of numeric
141+
* @param breaks
142142
* A numeric vector of positions (of ticks).
143-
* @param labels list of strings
143+
* @param labels
144144
* A vector of labels (on ticks).
145-
* @param limits pair
145+
* @param limits
146146
* A numeric vector of length two providing limits of the scale.
147-
* @param expand list of numbers
147+
* @param expand
148148
* A numeric vector of length two giving multiplicative and additive expansion constants.
149149
* The vector size == 1 => only multiplicative expand (and additive expand by default).
150150
* Defaults: multiplicative = 0.05, additive = 0.
@@ -180,16 +180,16 @@ fun scaleXTime(
180180
/**
181181
* Position scale y for data representing "time delta" values expressed in milliseconds.
182182
*
183-
* @param name string
183+
* @param name
184184
* The name of the scale - used as the axis label or the legend title.
185185
* If None, the default, the name of the scale is taken from the first mapping used for that aesthetic.
186-
* @param breaks list of numerics
186+
* @param breaks
187187
* A numeric vector of positions (of ticks).
188-
* @param labels list of strings
188+
* @param labels
189189
* A vector of labels (on ticks).
190-
* @param limits pair
190+
* @param limits
191191
* A numeric vector of length two providing limits of the scale.
192-
* @param expand list of numbers
192+
* @param expand
193193
* A numeric vector of length two giving multiplicative and additive expansion constants.
194194
* The vector size == 1 => only multiplicative expand (and additive expand by default).
195195
* Defaults: multiplicative = 0.05, additive = 0.

0 commit comments

Comments
 (0)