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

Unified Diff: tools/gn/setup.cc

Issue 2132443002: Fix typos in GN error message (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/setup.cc
diff --git a/tools/gn/setup.cc b/tools/gn/setup.cc
index 5796ada203ea4e384bc1aa597016929d25d96ace..eceb4f03c0b4005042e6017ea134720026f7b385 100644
--- a/tools/gn/setup.cc
+++ b/tools/gn/setup.cc
@@ -514,7 +514,7 @@ bool Setup::FillSourceDir(const base::CommandLine& cmdline) {
if (dotfile_name_.empty()) {
Err(Location(), "Could not load dotfile.",
"The file \"" + FilePathToUTF8(dot_file_path) +
- "\" cound't be loaded.").PrintToStdout();
+ "\" couldn't be loaded.").PrintToStdout();
return false;
}
}
@@ -624,7 +624,7 @@ bool Setup::RunConfigFile() {
dotfile_input_file_.reset(new InputFile(SourceFile("//.gn")));
if (!dotfile_input_file_->Load(dotfile_name_)) {
Err(Location(), "Could not load dotfile.",
- "The file \"" + FilePathToUTF8(dotfile_name_) + "\" cound't be loaded")
+ "The file \"" + FilePathToUTF8(dotfile_name_) + "\" couldn't be loaded")
.PrintToStdout();
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698