Fix two kinds of typos.
Bob Arnson committed
Jan 18, 2023 at 16:02 UTC
9f368d76848e31d21ec3c193fa8c92849b1362a1
1 file changed
+1
-1
src/api/wix/WixToolset.Data/ErrorMessages.cs
+1
-1
@@ -2238,7 +2238,7 @@ namespace WixToolset.Data
2238
2239
public static Message BindVariableUnknown(SourceLineNumber sourceLineNumbers, string variableId)
2240
{
2241
- return Message(sourceLineNumbers, Ids.BindVariableUnknown, "The bind variable !(wix.{0}) is unknown. Please ensure the variable is declared on the command line for wix.exe, via a BindVariable element, or inline using the syntax !(wix.{0}=some value which doesn't contain parenthesis).", variableId);
2241
+ return Message(sourceLineNumbers, Ids.BindVariableUnknown, "The bind variable !(wix.{0}) is unknown. Please ensure the variable is declared on the command line for wix.exe, via a WixVariable element, or inline using the syntax !(wix.{0}=some value which doesn't contain parentheses).", variableId);
2242
}
2243
2244
public static Message NoSourceFiles()