From 1d61926379e52167dd4059b54b1da054bdd3555d Mon Sep 17 00:00:00 2001 From: Kevin Hufnagle Date: Tue, 30 Jul 2019 18:57:35 +0000 Subject: [PATCH] docs: Added missing comma in RectF class description. Test: make ds-docs -j32 Bug: 132942874 Change-Id: I8e9d2bfa620be35ef66bd9b05c4a0b9e4727cafa --- graphics/java/android/graphics/RectF.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/java/android/graphics/RectF.java b/graphics/java/android/graphics/RectF.java index 3361fa21e44b7..1d294d51a2357 100644 --- a/graphics/java/android/graphics/RectF.java +++ b/graphics/java/android/graphics/RectF.java @@ -27,7 +27,7 @@ import java.io.PrintWriter; /** * RectF holds four float coordinates for a rectangle. The rectangle is - * represented by the coordinates of its 4 edges (left, top, right bottom). + * represented by the coordinates of its 4 edges (left, top, right, bottom). * These fields can be accessed directly. Use width() and height() to retrieve * the rectangle's width and height. Note: most methods do not check to see that * the coordinates are sorted correctly (i.e. left <= right and top <= bottom).