diff options
author | bnc <bnc@chromium.org> | 2014-10-29 09:37:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-29 16:38:03 +0000 |
commit | 9d5d14145c01519572ff756a580576fddb746b49 (patch) | |
tree | e044ea48503f6592cb1dd1be58823b66eb57cbc2 /url | |
parent | 8ab49ba60a93c60bf3fc6c70cb4b08025135ea76 (diff) | |
download | chromium_src-9d5d14145c01519572ff756a580576fddb746b49.zip chromium_src-9d5d14145c01519572ff756a580576fddb746b49.tar.gz chromium_src-9d5d14145c01519572ff756a580576fddb746b49.tar.bz2 |
Fix typo.
s/canoncial/canonical/ in variable names and comments. No functional change.
TBR=brettw
BUG=
Review URL: https://codereview.chromium.org/685463002
Cr-Commit-Position: refs/heads/master@{#301857}
Diffstat (limited to 'url')
-rw-r--r-- | url/url_util_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/url/url_util_unittest.cc b/url/url_util_unittest.cc index ea4824f..aba44e4 100644 --- a/url/url_util_unittest.cc +++ b/url/url_util_unittest.cc @@ -234,7 +234,7 @@ TEST(URLUtilTest, TestResolveRelativeWithNonStandardBase) { // URL doesn't alter the authority section. {"scheme://Authority/", "../path", true, "scheme://Authority/path"}, // A non-standard hierarchical base is resolved with path URL - // canoncialization rules. + // canonicalization rules. {"data:/Blah:Blah/", "file.html", true, "data:/Blah:Blah/file.html"}, {"data:/Path/../part/part2", "file.html", true, "data:/Path/../part/file.html"}, |