Merge "Fix typo in javadoc." into jb-dev
This commit is contained in:
@@ -49,9 +49,9 @@ public final class Rect implements Parcelable {
|
||||
* checking is performed, so the caller must ensure that 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 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
|
||||
*/
|
||||
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
|
||||
* 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 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
|
||||
*/
|
||||
public void set(int left, int top, int right, int bottom) {
|
||||
|
||||
@@ -46,9 +46,9 @@ public class RectF implements Parcelable {
|
||||
* checking is performed, so the caller must ensure that 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 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
|
||||
*/
|
||||
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
|
||||
* 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 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
|
||||
*/
|
||||
public void set(float left, float top, float right, float bottom) {
|
||||
|
||||
Reference in New Issue
Block a user