summaryrefslogtreecommitdiffstats
path: root/url/url_parse_internal.h
diff options
context:
space:
mode:
authorqyearsley <qyearsley@chromium.org>2015-08-14 13:17:15 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-14 20:17:42 +0000
commit2bc727de36df5826011630b13e1ae86f349f1486 (patch)
tree9bbc2727a3b579a4c0454d249dafd118b07a523f /url/url_parse_internal.h
parent1c92d5b76e02a23ca199ad912be42976335d1691 (diff)
downloadchromium_src-2bc727de36df5826011630b13e1ae86f349f1486.zip
chromium_src-2bc727de36df5826011630b13e1ae86f349f1486.tar.gz
chromium_src-2bc727de36df5826011630b13e1ae86f349f1486.tar.bz2
Proof-read comments in src/url/.
Review URL: https://codereview.chromium.org/1270443006 Cr-Commit-Position: refs/heads/master@{#343473}
Diffstat (limited to 'url/url_parse_internal.h')
-rw-r--r--url/url_parse_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/url/url_parse_internal.h b/url/url_parse_internal.h
index f1e0960..7630878 100644
--- a/url/url_parse_internal.h
+++ b/url/url_parse_internal.h
@@ -11,7 +11,7 @@
namespace url {
-// We treat slashes and backslashes the same for IE compatability.
+// We treat slashes and backslashes the same for IE compatibility.
inline bool IsURLSlash(base::char16 ch) {
return ch == '/' || ch == '\\';
}