diff --git a/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java b/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java
index cc179e2d55..962db5a884 100644
--- a/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java
+++ b/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java
@@ -33,25 +33,27 @@ import java.util.Map;
* A {@link DataSource} that supports multiple URI schemes. The supported schemes are:
*
*
- * - file: For fetching data from a local file (e.g. file:///path/to/media/media.mp4, or just
- * /path/to/media/media.mp4 because the implementation assumes that a URI without a scheme is
- * a local file URI).
- *
- asset: For fetching data from an asset in the application's apk (e.g. asset:///media.mp4).
- *
- rawresource: For fetching data from a raw resource in the application's apk (e.g.
- * rawresource:///resourceId, where rawResourceId is the integer identifier of the raw
- * resource).
- *
- android.resource: For fetching data in the application's apk (e.g.
- * android.resource:///resourceId or android.resource://resourceType/resourceName). See {@link
- * RawResourceDataSource} for more information about the URI form.
- *
- content: For fetching data from a content URI (e.g. content://authority/path/123).
- *
- rtmp: For fetching data over RTMP. Only supported if the project using ExoPlayer has an
- * explicit dependency on ExoPlayer's RTMP extension.
- *
- data: For parsing data inlined in the URI as defined in RFC 2397.
- *
- udp: For fetching data over UDP (e.g. udp://something.com/media).
- *
- http(s): For fetching data over HTTP and HTTPS (e.g. https://www.something.com/media.mp4),
- * if constructed using {@link #DefaultDataSource(Context, String, boolean)}, or any other
- * schemes supported by a base data source if constructed using {@link
- * #DefaultDataSource(Context, DataSource)}.
+ *
- {@code file}: For fetching data from a local file (e.g. {@code
+ * file:///path/to/media/media.mp4}, or just {@code /path/to/media/media.mp4} because the
+ * implementation assumes that a URI without a scheme is a local file URI).
+ *
- {@code asset}: For fetching data from an asset in the application's APK (e.g. {@code
+ * asset:///media.mp4}).
+ *
- {@code rawresource}: For fetching data from a raw resource in the application's APK (e.g.
+ * {@code rawresource:///resourceId}, where {@code rawResourceId} is the integer identifier of
+ * the raw resource).
+ *
- {@code android.resource}: For fetching data in the application's APK (e.g. {@code
+ * android.resource:///resourceId} or {@code android.resource://resourceType/resourceName}).
+ * See {@link RawResourceDataSource} for more information about the URI form.
+ *
- {@code content}: For fetching data from a content URI (e.g. {@code
+ * content://authority/path/123}).
+ *
- {@code rtmp}: For fetching data over RTMP. Only supported if the project using ExoPlayer
+ * has an explicit dependency on ExoPlayer's RTMP extension.
+ *
- {@code data}: For parsing data inlined in the URI as defined in RFC 2397.
+ *
- {@code udp}: For fetching data over UDP (e.g. {@code udp://something.com/media}).
+ *
- {@code http(s)}: For fetching data over HTTP and HTTPS (e.g. {@code
+ * https://www.something.com/media.mp4}), if constructed using {@link
+ * #DefaultDataSource(Context, String, boolean)}, or any other schemes supported by a base
+ * data source if constructed using {@link #DefaultDataSource(Context, DataSource)}.
*
*/
public final class DefaultDataSource implements DataSource {