Skip to content

Commit 54ef604

Browse files
committed
Improved docs
1 parent 30ce906 commit 54ef604

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/org/schabi/newpipe/player/Player.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,14 +609,14 @@ public FastSeekDirection getFastSeekDirection(
609609
return FastSeekDirection.NONE;
610610
}
611611
if (portion == DisplayPortion.LEFT) {
612-
// Check if we can rewind
612+
// Check if it's possible to rewind
613613
// Small puffer to eliminate infinite rewind seeking
614614
if (simpleExoPlayer.getCurrentPosition() < 500L) {
615615
return FastSeekDirection.NONE;
616616
}
617617
return FastSeekDirection.BACKWARD;
618618
} else if (portion == DisplayPortion.RIGHT) {
619-
// Check if the can fast-forward
619+
// Check if it's possible to fast-forward
620620
if (currentState == STATE_COMPLETED
621621
|| simpleExoPlayer.getCurrentPosition()
622622
>= simpleExoPlayer.getDuration()) {

0 commit comments

Comments
 (0)