Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Samuel Défago <[email protected]>
  • Loading branch information
StaehliJ and defagos authored Sep 13, 2023
1 parent c171f17 commit 0d7cee5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import kotlinx.coroutines.flow.map
/**
* Progress tracker
*
* Handle a progress position that is a mix of the player current position and the user seeked position.
* Handle a progress position that is a mix of the player current position and the user desired seek position.
*
* @property player The player to track current position.
* @property player The player whose current position must be tracked.
*/
@Stable
class ProgressTracker internal constructor(private val player: Player) {
Expand Down Expand Up @@ -66,7 +66,7 @@ class ProgressTracker internal constructor(private val player: Player) {
}

/**
* User has finish seeking.
* User has finished seeking.
*/
fun userSeekFinish() {
userSeekState.value.let {
Expand Down

0 comments on commit 0d7cee5

Please sign in to comment.