summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/rect.cc
diff options
context:
space:
mode:
authorbinji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-29 22:26:15 +0000
committerbinji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-29 22:26:15 +0000
commit935d00fd2e39a0c216f798cb0453b298b9ad689f (patch)
tree4e61181702d7ac74542eecdc704ecb0447162644 /ppapi/cpp/rect.cc
parent1f1225be279e05a22e672284bf2f1a2200d70740 (diff)
downloadchromium_src-935d00fd2e39a0c216f798cb0453b298b9ad689f.zip
chromium_src-935d00fd2e39a0c216f798cb0453b298b9ad689f.tar.gz
chromium_src-935d00fd2e39a0c216f798cb0453b298b9ad689f.tar.bz2
[PPAPI] Fix a bunch of spelling mistakes
BUG=none Review URL: https://codereview.chromium.org/13220002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/rect.cc')
-rw-r--r--ppapi/cpp/rect.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/cpp/rect.cc b/ppapi/cpp/rect.cc
index 39d8018..1e9ff05 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 {