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

Unified Diff: tools/gn/function_toolchain.cc

Issue 1750283003: Minor fixes to tools/gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix last reference to IsValidToolSubstutition. Created 4 years, 10 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
Index: tools/gn/function_toolchain.cc
diff --git a/tools/gn/function_toolchain.cc b/tools/gn/function_toolchain.cc
index 3e272c958642a4ade77f90a78a5fc05e3fa6dbbb..9eeae982cf3bf17210ef53e4325d23b69c7f98a1 100644
--- a/tools/gn/function_toolchain.cc
+++ b/tools/gn/function_toolchain.cc
@@ -816,8 +816,8 @@ Value RunTool(Scope* scope,
subst_validator = &IsValidCopySubstitution;
subst_output_validator = &IsValidCopySubstitution;
} else {
- subst_validator = &IsValidToolSubstutition;
- subst_output_validator = &IsValidToolSubstutition;
+ subst_validator = &IsValidToolSubstitution;
+ subst_output_validator = &IsValidToolSubstitution;
}
scoped_ptr<Tool> tool(new Tool);

Powered by Google App Engine
This is Rietveld 408576698