Skip to content

Commit

Permalink
🔀 Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
devkanro authored Oct 20, 2023
1 parent ba0145e commit 4e4d25f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import org.jetbrains.jewel.painter.hints.HiDpi
interface PainterHintsProvider {

/**
* These hints will be consumed before the [hints] when [PainterProvider.getPainter] is called.
* These hints will be consumed before the hints which are passed as a parameter to [PainterProvider.getPainter].
*/
@Composable
fun priorityHints(path: String): List<PainterHint> = emptyList()

/**
* These hints will be consumed after the [priorityHints] when [PainterProvider.getPainter] is called.
* These hints will be consumed after the hints which are passed as a parameter to [PainterProvider.getPainter].
*/
@Composable
fun hints(path: String): List<PainterHint>
Expand Down

0 comments on commit 4e4d25f

Please sign in to comment.