Fix typos flagged by lint

PiperOrigin-RevId: 451135097
This commit is contained in:
ibaker 2022-05-26 11:52:02 +00:00 committed by Marc Baechinger
parent b8769b2717
commit 53b44524cd
4 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@ public abstract class BasePlayer implements Player {
/**
* {@inheritDoc}
*
* <p>BasePlayer and its descendents will return {@code true}.
* <p>BasePlayer and its descendants will return {@code true}.
*/
@Override
public final boolean canAdvertiseSession() {

View File

@ -649,7 +649,7 @@ public class DefaultTrackSelector extends MappingTrackSelector {
* supported by the audio and video renderers for the selected tracks.
*
* <p>Tunneling is known to have many device specific issues and limitations. Manual testing is
* strongly recomended to check that the media plays correctly when this option is enabled. See
* strongly recommended to check that the media plays correctly when this option is enabled. See
* [#9661](https://github.com/google/ExoPlayer/issues/9661),
* [#9133](https://github.com/google/ExoPlayer/issues/9133),
* [#9317](https://github.com/google/ExoPlayer/issues/9317),

View File

@ -113,7 +113,7 @@ import java.lang.annotation.Target;
for (int i = 0; i < longitudes + 1; ++i) { // For each vertical edge in the band.
for (int k = 0; k < 2; ++k) { // For low and high points on an edge.
// For each point, determine it's position in polar coordinates.
// For each point, determine its position in polar coordinates.
float phi = k == 0 ? phiLow : phiHigh;
float theta = quadWidthRads * i + (float) Math.PI - horizontalFovRads / 2;

View File

@ -63,7 +63,7 @@ import org.mockito.Mockito;
*
* <p>Most implementations should pass all these tests. If necessary, subclasses can disable tests
* by overriding the {@link Test @Test} method with a no-op implementation. It's recommended (but
* not required) to also annotate this {@link Ignore @Ignore} so that JUnit correclty reports the
* not required) to also annotate this {@link Ignore @Ignore} so that JUnit correctly reports the
* test as skipped/ignored instead of passing.
*/
@RequiresApi(19)