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 3f42f19b71..b20adf781f 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
@@ -241,17 +241,17 @@ import java.util.concurrent.CopyOnWriteArrayList;
*
Type: {@link ImageView}
* Note: StyledPlayerControlView will programmatically set the drawable on the repeat
* toggle button according to the player's current repeat mode. The drawables used are
- * {@code exo_controls_repeat_off}, {@code exo_controls_repeat_one} and {@code
- * exo_controls_repeat_all}. See the section above for information on overriding these
- * drawables.
+ * {@code exo_styled_controls_repeat_off}, {@code exo_styled_controls_repeat_one} and
+ * {@code exo_styled_controls_repeat_all}. See the section above for information on
+ * overriding these drawables.
*
* {@code exo_shuffle} - The shuffle button.
*
* - Type: {@link ImageView}
*
- Note: StyledPlayerControlView will programmatically set the drawable on the shuffle
* button according to the player's current repeat mode. The drawables used are {@code
- * exo_controls_shuffle_off} and {@code exo_controls_shuffle_on}. See the section above
- * for information on overriding these drawables.
+ * exo_styled_controls_shuffle_off} and {@code exo_styled_controls_shuffle_on}. See the
+ * section above for information on overriding these drawables.
*
* {@code exo_vr} - The VR mode button.
*
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 b8907094fd..4090e1f962 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
@@ -498,7 +498,7 @@ public class StyledPlayerView extends FrameLayout implements AdViewProvider {
if (customController != null) {
this.controller = customController;
} else if (controllerPlaceholder != null) {
- // Propagate attrs as playbackAttrs so that PlayerControlView's custom attributes are
+ // Propagate attrs as playbackAttrs so that StyledPlayerControlView's custom attributes are
// transferred, but standard attributes (e.g. background) are not.
this.controller = new StyledPlayerControlView(context, null, 0, attrs);
controller.setId(R.id.exo_controller);