Skip to content

Commit

Permalink
[#599] Review: Fix kdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
paulinea authored and florentmaitre committed Sep 6, 2023
1 parent fec445c commit 16f157b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,27 +100,27 @@ class OdsIconToggleButtonsRowIcon : OdsComponentIcon {
* Creates an instance of [OdsIconToggleButtonsRowIcon].
*
* @param painter Painter of the icon.
* @param contentDescription The content description associated to this [OdsIconButtonIcon].
* @param contentDescription The content description associated to this [OdsIconToggleButtonsRowIcon].
* @param enabled Whether or not this [OdsIconToggleButtonsRowIcon] will handle input events and appear enabled for
* semantics purposes, true by default.
*/
constructor(painter: Painter, contentDescription: String, enabled: Boolean = true) : super(painter as Any, contentDescription, enabled)

/**
* Creates an instance of [OdsIconButtonIcon].
* Creates an instance of [OdsIconToggleButtonsRowIcon].
*
* @param imageVector Image vector of the icon.
* @param contentDescription The content description associated to this [OdsIconButtonIcon].
* @param contentDescription The content description associated to this [OdsIconToggleButtonsRowIcon].
* @param enabled Whether or not this [OdsIconToggleButtonsRowIcon] will handle input events and appear enabled for
* semantics purposes, true by default.
*/
constructor(imageVector: ImageVector, contentDescription: String, enabled: Boolean = true) : super(imageVector as Any, contentDescription, enabled)

/**
* Creates an instance of [OdsIconButtonIcon].
* Creates an instance of [OdsIconToggleButtonsRowIcon].
*
* @param bitmap Image bitmap of the icon.
* @param contentDescription The content description associated to this [OdsIconButtonIcon].
* @param contentDescription The content description associated to this [OdsIconToggleButtonsRowIcon].
* @param enabled Whether or not this [OdsIconToggleButtonsRowIcon] will handle input events and appear enabled for
* semantics purposes, true by default.
*/
Expand Down

0 comments on commit 16f157b

Please sign in to comment.