diff options
| author | 2022-06-21 09:22:09 +0200 | |
|---|---|---|
| committer | 2022-07-14 23:03:23 +0200 | |
| commit | 786b37b0455013383dca0df858f892628f4d8ef0 (patch) | |
| tree | 451cae6b8e6a6996547bc45f1c4714dcbdb80a6d | |
| parent | a303ea139d1a1a70d17466b42b4ec923f9eba0e9 (diff) | |
Fix javadoc typo for Bitmap.Config.RGBA_F16
Signed-off-by: Piotr Fusik <piotr.fusik@gmail.com>
Change-Id: I5152f9888eeb9f0ece6e89b51e25905b175e906a
| -rw-r--r-- | graphics/java/android/graphics/Bitmap.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/Bitmap.java b/graphics/java/android/graphics/Bitmap.java index 055e5ad17def..ad089b63a7c1 100644 --- a/graphics/java/android/graphics/Bitmap.java +++ b/graphics/java/android/graphics/Bitmap.java @@ -519,7 +519,7 @@ public final class Bitmap implements Parcelable { ARGB_8888 (5), /** - * Each pixels is stored on 8 bytes. Each channel (RGB and alpha + * Each pixel is stored on 8 bytes. Each channel (RGB and alpha * for translucency) is stored as a * {@link android.util.Half half-precision floating point value}. * |