diff options
Diffstat (limited to 'ppapi/cpp/rect.h')
-rw-r--r-- | ppapi/cpp/rect.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/cpp/rect.h b/ppapi/cpp/rect.h index e3243c0..aa659d1 100644 --- a/ppapi/cpp/rect.h +++ b/ppapi/cpp/rect.h @@ -299,7 +299,7 @@ class Rect { /// IsEmpty() determines if the area of a rectangle is zero. Returns true if /// the area of the rectangle is zero. /// - /// @return True if the area of the rectangle is zero. + /// @return true if the area of the rectangle is zero. bool IsEmpty() const { return rect_.size.width == 0 && rect_.size.height == 0; } @@ -311,7 +311,7 @@ class Rect { /// @param[in] point_x An int32_t value representing a x value. /// @param[in] point_y An int32_t value representing a y value. /// - /// @return True if the point_x and point_y fall inside the rectangle. + /// @return true if the point_x and point_y fall inside the rectangle. bool Contains(int32_t point_x, int32_t point_y) const; /// Contains() determines if the specified point is contained by this @@ -319,7 +319,7 @@ class Rect { /// /// @param[in] point A pointer to a Point representing a 2D coordinate. /// - /// @return True if the point_x and point_y fall inside the rectangle. + /// @return true if the point_x and point_y fall inside the rectangle. bool Contains(const Point& point) const { return Contains(point.x(), point.y()); } @@ -328,7 +328,7 @@ class Rect { /// /// @param[in] rect A pointer to a <code>Rect</code>. /// - /// @return True if the rectangle fall inside this rectangle. + /// @return true if the rectangle fall inside this rectangle. bool Contains(const Rect& rect) const; /// Insersects() determines if this rectangle intersects the specified @@ -336,7 +336,7 @@ class Rect { /// /// @param[in] rect A pointer to a <code>Rect</code>. /// - /// @return True if the rectangle intersects this rectangle. + /// @return true if the rectangle intersects this rectangle. bool Intersects(const Rect& rect) const; /// Intersect() computes the intersection of this rectangle with the given |