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

Unified Diff: ash/accelerators/accelerator_table_unittest.cc

Issue 711873002: Fix some minor typos related to the word "accelerate" and its derivative. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | athena/input/accelerator_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/accelerators/accelerator_table_unittest.cc
diff --git a/ash/accelerators/accelerator_table_unittest.cc b/ash/accelerators/accelerator_table_unittest.cc
index ec71f412eb12b484fbd44b185fda2c9109c4b18e..b04c579594e443b1da57f8abec1ba59ba4800abd 100644
--- a/ash/accelerators/accelerator_table_unittest.cc
+++ b/ash/accelerators/accelerator_table_unittest.cc
@@ -27,10 +27,10 @@ struct Cmp {
} // namespace
TEST(AcceleratorTableTest, CheckDuplicatedAccelerators) {
- std::set<AcceleratorData, Cmp> acclerators;
+ std::set<AcceleratorData, Cmp> accelerators;
for (size_t i = 0; i < kAcceleratorDataLength; ++i) {
const AcceleratorData& entry = kAcceleratorData[i];
- EXPECT_TRUE(acclerators.insert(entry).second)
+ EXPECT_TRUE(accelerators.insert(entry).second)
<< "Duplicated accelerator: " << entry.trigger_on_press << ", "
<< entry.keycode << ", " << (entry.modifiers & ui::EF_SHIFT_DOWN)
<< ", " << (entry.modifiers & ui::EF_CONTROL_DOWN) << ", "
« no previous file with comments | « no previous file | athena/input/accelerator_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698