Skip to content

Commit f9ec3e7

Browse files
Small fixes in KDocs.
1 parent b56ae5c commit f9ec3e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/geom/geom_histogram.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ import org.jetbrains.letsPlot.tooltips.TooltipOptions
7878
* @param center Specifies x-value to align bin centers to.
7979
* @param boundary Specifies x-value to align bin boundary (i.e. point between bins) to.
8080
* @param threshold default = null
81-
* Only bins with a `..count..` greater than the threshold will be displayed.
81+
* If a bin's `..count..` is less than the threshold, it will be removed, but only if it is on the left or right edge of the histogram.
8282
* This is useful for free scales in facets - use threshold=0 to make the plot take up the entire panel space.
8383
* @param colorBy default = "color" ("fill", "color", "paint_a", "paint_b", "paint_c").
8484
* Defines the color aesthetic for the geometry.

plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/themes/theme.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ fun elementLine(
578578
* The margin may be specified using a number or a list of numbers:
579579
* - a number or list of one number - the same margin it applied to all four sides;
580580
* - a list of two numbers - the first margin applies to the top and bottom, the second - to the left and right;
581-
* - a list of three numbers - the first margin applies to the top, the second - to the right and left,
581+
* - a list of three numbers - the first margin applies to the top, the second - to the right and left,
582582
* the third - to the bottom;
583583
* - a list of four numbers - the margins are applied to the top, right, bottom and left in that order.
584584
* It is acceptable to use `null` for any side; in this case, the default side value for this element will be used.
@@ -637,7 +637,7 @@ fun elementText(
637637
* The margin may be specified using a number or a list of numbers:
638638
* - a number or list of one number - the same margin it applied to all four sides;
639639
* - a list of two numbers - the first margin applies to the top and bottom, the second - to the left and right;
640-
* - a list of three numbers - the first margin applies to the top, the second - to the right and left,
640+
* - a list of three numbers - the first margin applies to the top, the second - to the right and left,
641641
* the third - to the bottom;
642642
* - a list of four numbers - the margins are applied to the top, right, bottom and left in that order.
643643
* It is acceptable to use `null` for any side; in this case, the default side value for this element will be used.

0 commit comments

Comments
 (0)