diff --git a/library/core/src/main/java/com/google/android/exoplayer2/Player.java b/library/core/src/main/java/com/google/android/exoplayer2/Player.java
index 312959b163..d89cce6025 100644
--- a/library/core/src/main/java/com/google/android/exoplayer2/Player.java
+++ b/library/core/src/main/java/com/google/android/exoplayer2/Player.java
@@ -42,20 +42,20 @@ import java.lang.annotation.RetentionPolicy;
/**
* A media player interface defining traditional high-level functionality, such as the ability to
* play, pause, seek and query properties of the currently playing media.
- *
- * Some important properties of media players that implement this interface are:
+ *
+ *
Some important properties of media players that implement this interface are:
+ *
*
- * - They can provide a {@link Timeline} representing the structure of the media being played,
- * which can be obtained by calling {@link #getCurrentTimeline()}.
- * - They can provide a {@link TrackGroupArray} defining the currently available tracks,
- * which can be obtained by calling {@link #getCurrentTrackGroups()}.
- * - They contain a number of renderers, each of which is able to render tracks of a single
- * type (e.g. audio, video or text). The number of renderers and their respective track types
- * can be obtained by calling {@link #getRendererCount()} and {@link #getRendererType(int)}.
- *
- * - They can provide a {@link TrackSelectionArray} defining which of the currently available
- * tracks are selected to be rendered by each renderer. This can be obtained by calling
- * {@link #getCurrentTrackSelections()}}.
+ * - They can provide a {@link Timeline} representing the structure of the media being played,
+ * which can be obtained by calling {@link #getCurrentTimeline()}.
+ *
- They can provide a {@link TrackGroupArray} defining the currently available tracks, which
+ * can be obtained by calling {@link #getCurrentTrackGroups()}.
+ *
- They contain a number of renderers, each of which is able to render tracks of a single type
+ * (e.g. audio, video or text). The number of renderers and their respective track types can
+ * be obtained by calling {@link #getRendererCount()} and {@link #getRendererType(int)}.
+ *
- They can provide a {@link TrackSelectionArray} defining which of the currently available
+ * tracks are selected to be rendered by each renderer. This can be obtained by calling {@link
+ * #getCurrentTrackSelections()}}.
*
*/
public interface Player {