Fix comment typos in sources

No real changes.

Closes https://github.com/wxWidgets/wxWidgets/pull/2541
This commit is contained in:
Blake Madden
2021-10-02 14:46:08 -04:00
committed by Vadim Zeitlin
parent cfdd4127b5
commit 668a2186cd
99 changed files with 133 additions and 133 deletions

View File

@@ -478,7 +478,7 @@ inline wxPoint2DDouble operator/(const wxPoint2DDouble& pt , wxInt32 n)
return wxPoint2DDouble( pt.m_x / n , pt.m_y / n );
}
// wxRect2Ds are a axis-aligned rectangles, each side of the rect is parallel to the x- or m_y- axis. The rectangle is either defined by the
// wxRect2Ds are an axis-aligned rectangles, each side of the rect is parallel to the x- or m_y- axis. The rectangle is either defined by the
// top left and bottom right corner, or by the top left corner and size. A point is contained within the rectangle if
// left <= x < right and top <= m_y < bottom , thus it is a half open interval.