-Fixed some typos.

This commit is contained in:
John Zhen Mo 2018-05-11 20:09:02 -07:00
parent 0fcef064fb
commit 13587d7ab3
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import static org.schabi.newpipe.player.BasePlayer.DEBUG;
public class PlaybackParameterDialog extends DialogFragment {
@NonNull private static final String TAG = "PlaybackParameterDialog";
// Maximum allowable range in ExoPlayer
// Minimum allowable range in ExoPlayer
public static final double MINIMUM_PLAYBACK_VALUE = 0.10f;
public static final double MAXIMUM_PLAYBACK_VALUE = 3.00f;

View File

@ -2,6 +2,6 @@ package org.schabi.newpipe.player.resolver;
import android.support.annotation.NonNull;
public interface Resolver<Source, Produce> {
Produce resolve(@NonNull Source source);
public interface Resolver<Source, Product> {
Product resolve(@NonNull Source source);
}