From 4ae9e0cbe78705ccf3b1d828f57b3d42d2c3de9f Mon Sep 17 00:00:00 2001 From: Andrew Solovay Date: Thu, 2 Feb 2023 01:17:54 +0000 Subject: docs: Fixing bad summary fragment in Canvas.isOpaque() The first sentence of the Canvas.isOpaque() comment contained an "i.e.", which the docs engine interprets as the end of the summary fragment (per the Javadoc standard). Replaced "i.e." with "that is" to fix this. Docs-only change, no code affected. NO_TEST , fixes a doc bug. Change-Id: Ib733365cc8654acdaf1d9b5bc891e0aa67210bf1 Test: [go/abtd docs build] Fixes: 267544675 --- graphics/java/android/graphics/Canvas.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/java/android/graphics/Canvas.java b/graphics/java/android/graphics/Canvas.java index 42c892a240b6..e7814cbd67e7 100644 --- a/graphics/java/android/graphics/Canvas.java +++ b/graphics/java/android/graphics/Canvas.java @@ -241,7 +241,7 @@ public class Canvas extends BaseCanvas { /** * Return true if the device that the current layer draws into is opaque - * (i.e. does not support per-pixel alpha). + * (that is, it does not support per-pixel alpha). * * @return true if the device that the current layer draws into is opaque */ -- cgit v1.2.3-59-g8ed1b