Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2198)

Unified Diff: ppapi/cpp/rect.cc

Issue 13220002: [PPAPI] Fix a bunch of spelling mistakes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/rect.h ('k') | ppapi/cpp/url_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/rect.cc
diff --git a/ppapi/cpp/rect.cc b/ppapi/cpp/rect.cc
index 39d8018b38bddbdaf1f366498fb9082b52f7fdf5..1e9ff05236b3d41dec29efb0b73b90b77cfd3e80 100644
--- a/ppapi/cpp/rect.cc
+++ b/ppapi/cpp/rect.cc
@@ -89,14 +89,14 @@ Rect Rect::Subtract(const Rect& rect) const {
int32_t rb = bottom();
if (rect.y() <= y() && rect.bottom() >= bottom()) {
- // complete int32_tersection in the y-direction
+ // complete intersection in the y-direction
if (rect.x() <= x()) {
rx = rect.right();
} else {
rr = rect.x();
}
} else if (rect.x() <= x() && rect.right() >= right()) {
- // complete int32_tersection in the x-direction
+ // complete intersection in the x-direction
if (rect.y() <= y()) {
ry = rect.bottom();
} else {
« no previous file with comments | « ppapi/cpp/rect.h ('k') | ppapi/cpp/url_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698