aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-11-20 11:05:28 +1100
committerNeil <nyamatongwe@gmail.com>2015-11-20 11:05:28 +1100
commit124307f221172d8c0638307f8ea227a842b45b1f (patch)
tree40ef82f0d3ee0f65de8839c5649c2938d0f92a07 /include/Platform.h
parent28c1e186b953ae0c8fe7681c7d7ae8950efb266f (diff)
downloadscintilla-mirror-124307f221172d8c0638307f8ea227a842b45b1f.tar.gz
Remove line end whitespace.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h
index 4ef7e2aab..63269d003 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -145,7 +145,7 @@ public:
(pt.y >= top) && (pt.y <= bottom);
}
bool ContainsWholePixel(Point pt) const {
- // Does the rectangle contain all of the pixel to left/below the point
+ // Does the rectangle contain all of the pixel to left/below the point
return (pt.x >= left) && ((pt.x+1) <= right) &&
(pt.y >= top) && ((pt.y+1) <= bottom);
}