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 83de6a66e2..379a77fbc8 100644
--- a/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java
+++ b/libraries/datasource/src/main/java/androidx/media3/datasource/DefaultDataSource.java
@@ -34,24 +34,24 @@ import java.util.Map;
* A {@link DataSource} that supports multiple URI schemes. The supported schemes are:
*
*
- * - {@code file}: For fetching data from a local file (e.g. {@code
+ *
- {@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
+ *
- {@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
+ *
- {@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
+ *
- {@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
+ *
- {@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)}.