diff --git a/google3/third_party/java_src/android_libs/media/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java b/google3/third_party/java_src/android_libs/media/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java index 351deb8ecb7..bcbb43189ca 100644 --- a/google3/third_party/java_src/android_libs/media/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java +++ b/google3/third_party/java_src/android_libs/media/libraries/effect/src/main/java/androidx/media3/effect/RgbAdjustment.java @@ -38,7 +38,7 @@ public Builder() { } /** - * Scales the red channel of the frame by {@param redScale}. + * Scales the red channel of the frame by {@code redScale}. * * @param redScale The scale to apply to the red channel. Needs to be non-negative and the * default value is {@code 1}. @@ -51,7 +51,7 @@ public Builder setRedScale(float redScale) { } /** - * Scales the green channel of the frame by {@param greenScale}. + * Scales the green channel of the frame by {@code greenScale}. * * @param greenScale The scale to apply to the green channel. Needs to be non-negative and the * default value is {@code 1}. @@ -64,7 +64,7 @@ public Builder setGreenScale(float greenScale) { } /** - * Scales the blue channel of the frame by {@param blueScale}. + * Scales the blue channel of the frame by {@code blueScale}. * * @param blueScale The scale to apply to the blue channel. Needs to be non-negative and the * default value is {@code 1}.