From 42d27af0daf4c01022e4c6466d81f7fb6ff18191 Mon Sep 17 00:00:00 2001 From: Laura Davis Date: Fri, 27 Jul 2018 12:07:27 -0700 Subject: [PATCH] Docs: fixed typo Test: make ds-docs Bug: 111817624 Change-Id: I908e06419ab56220b41be6f821cff3258691b3b9 --- graphics/java/android/graphics/Canvas.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/java/android/graphics/Canvas.java b/graphics/java/android/graphics/Canvas.java index a465eeafa2876..22c4e7557b789 100644 --- a/graphics/java/android/graphics/Canvas.java +++ b/graphics/java/android/graphics/Canvas.java @@ -1591,9 +1591,9 @@ public class Canvas extends BaseCanvas { * Draw the specified circle using the specified paint. If radius is <= 0, then nothing will be * drawn. The circle will be filled or framed based on the Style in the paint. * - * @param cx The x-coordinate of the center of the cirle to be drawn - * @param cy The y-coordinate of the center of the cirle to be drawn - * @param radius The radius of the cirle to be drawn + * @param cx The x-coordinate of the center of the circle to be drawn + * @param cy The y-coordinate of the center of the circle to be drawn + * @param radius The radius of the circle to be drawn * @param paint The paint used to draw the circle */ public void drawCircle(float cx, float cy, float radius, @NonNull Paint paint) {