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

Unified Diff: tools/gn/label_pattern.cc

Issue 670833003: gn: Fix typo in error message (for label pattern wildcards). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/label_pattern.cc
diff --git a/tools/gn/label_pattern.cc b/tools/gn/label_pattern.cc
index 752898f1acace2f03bdddc25315da680728b6d00..396a9b73a9d4fc1f269d926496b2dda5d0a46e89 100644
--- a/tools/gn/label_pattern.cc
+++ b/tools/gn/label_pattern.cc
@@ -161,7 +161,7 @@ LabelPattern LabelPattern::GetPattern(const SourceDir& current_dir,
// The non-wildcard stuff better not have a wildcard.
if (path.find('*') != base::StringPiece::npos) {
*err = Err(value, "Label patterns only support wildcard suffixes.",
- "The pattern contained a '*' that wasn't at tne end.");
+ "The pattern contained a '*' that wasn't at the end.");
return LabelPattern();
}
« 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