Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 852be167 authored by Pin Ting's avatar Pin Ting
Browse files

Fix typo in javadoc.

Change-Id: I0e5d8640764772871e72cb00d117d12f3eaeb64f
parent fa61f0b2
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -49,9 +49,9 @@ public final class Rect implements Parcelable {
     * checking is performed, so the caller must ensure that left <= right and
     * checking is performed, so the caller must ensure that left <= right and
     * top <= bottom.
     * top <= bottom.
     *
     *
     * @param left   The X coordinate of the left side of the rectagle
     * @param left   The X coordinate of the left side of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param right  The X coordinate of the right side of the rectagle
     * @param right  The X coordinate of the right side of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     */
     */
    public Rect(int left, int top, int right, int bottom) {
    public Rect(int left, int top, int right, int bottom) {
@@ -235,9 +235,9 @@ public final class Rect implements Parcelable {
     * checking is performed, so it is up to the caller to ensure that
     * checking is performed, so it is up to the caller to ensure that
     * left <= right and top <= bottom.
     * left <= right and top <= bottom.
     *
     *
     * @param left   The X coordinate of the left side of the rectagle
     * @param left   The X coordinate of the left side of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param right  The X coordinate of the right side of the rectagle
     * @param right  The X coordinate of the right side of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     */
     */
    public void set(int left, int top, int right, int bottom) {
    public void set(int left, int top, int right, int bottom) {
+4 −4
Original line number Original line Diff line number Diff line
@@ -46,9 +46,9 @@ public class RectF implements Parcelable {
     * checking is performed, so the caller must ensure that left <= right and
     * checking is performed, so the caller must ensure that left <= right and
     * top <= bottom.
     * top <= bottom.
     *
     *
     * @param left   The X coordinate of the left side of the rectagle
     * @param left   The X coordinate of the left side of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param right  The X coordinate of the right side of the rectagle
     * @param right  The X coordinate of the right side of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     */
     */
    public RectF(float left, float top, float right, float bottom) {
    public RectF(float left, float top, float right, float bottom) {
@@ -182,9 +182,9 @@ public class RectF implements Parcelable {
     * checking is performed, so it is up to the caller to ensure that
     * checking is performed, so it is up to the caller to ensure that
     * left <= right and top <= bottom.
     * left <= right and top <= bottom.
     *
     *
     * @param left   The X coordinate of the left side of the rectagle
     * @param left   The X coordinate of the left side of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param top    The Y coordinate of the top of the rectangle
     * @param right  The X coordinate of the right side of the rectagle
     * @param right  The X coordinate of the right side of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     * @param bottom The Y coordinate of the bottom of the rectangle
     */
     */
    public void set(float left, float top, float right, float bottom) {
    public void set(float left, float top, float right, float bottom) {