diff --git a/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerControlView.java b/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerControlView.java
index 4ef733d039..cd9819bdb5 100644
--- a/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerControlView.java
+++ b/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerControlView.java
@@ -84,12 +84,13 @@ import java.util.concurrent.CopyOnWriteArrayList;
/**
* A view for controlling {@link Player} instances.
*
- *
A StyledPlayerControlView can be customized by setting attributes (or calling corresponding
- * methods), or overriding drawables.
+ *
A {@code StyledPlayerControlView} can be customized by setting attributes (or calling
+ * corresponding methods), or overriding drawables.
*
*
Attributes
*
- * The following attributes can be set on a StyledPlayerControlView when used in a layout XML file:
+ * The following attributes can be set on a {@code StyledPlayerControlView} when used in a layout
+ * XML file:
*
*
* - {@code show_timeout} - The time between the last user interaction and the controls
@@ -148,22 +149,14 @@ import java.util.concurrent.CopyOnWriteArrayList;
*
- Corresponding method: {@link #setTimeBarMinUpdateInterval(int)}
*
- Default: {@link #DEFAULT_TIME_BAR_MIN_UPDATE_INTERVAL_MS}
*
- * {@code controller_layout_id} - Specifies the id of the layout to be inflated. See
- * below for more details.
- *
- * - Corresponding method: None
- *
- Default: {@code R.layout.exo_styled_player_control_view}
- *
- * All attributes that can be set on {@link DefaultTimeBar} can also be set on a
- * StyledPlayerControlView, and will be propagated to the inflated {@link DefaultTimeBar}
- * unless the layout is overridden to specify a custom {@code exo_progress} (see below).
+ * All attributes that can be set on {@link DefaultTimeBar} can also be set on a {@code
+ * StyledPlayerControlView}, and will be propagated to the inflated {@link DefaultTimeBar}.
*
*
* Overriding drawables
*
- * The drawables used by StyledPlayerControlView (with its default layout file) can be overridden by
- * drawables with the same names defined in your application. The drawables that can be overridden
- * are:
+ * The drawables used by {@code StyledPlayerControlView} can be overridden by drawables with the
+ * same names defined in your application. The drawables that can be overridden are:
*
*
* - {@code exo_styled_controls_play} - The play icon.
diff --git a/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerView.java b/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerView.java
index 9805d7fd6c..da17c4c1c7 100644
--- a/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerView.java
+++ b/library/ui/src/main/java/com/google/android/exoplayer2/ui/StyledPlayerView.java
@@ -156,15 +156,14 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
*
* All attributes that can be set on {@link StyledPlayerControlView} and {@link
* DefaultTimeBar} can also be set on a StyledPlayerView, and will be propagated to the
- * inflated {@link StyledPlayerControlView} unless the layout is overridden to specify a
- * custom {@code exo_controller}.
+ * inflated {@link StyledPlayerControlView}.
*
*
* Overriding drawables
*
- * The drawables used by {@link StyledPlayerControlView} (with its default layout file) can be
- * overridden by drawables with the same names defined in your application. See the {@link
- * StyledPlayerControlView} documentation for a list of drawables that can be overridden.
+ * The drawables used by {@link StyledPlayerControlView} can be overridden by drawables with the
+ * same names defined in your application. See the {@link StyledPlayerControlView} documentation for
+ * a list of drawables that can be overridden.
*/
public class StyledPlayerView extends FrameLayout implements AdViewProvider {