diff options
author | Bob Arnson <bob@firegiant.com> | 2023-01-18 16:02:44 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-01-18 17:04:15 -0500 |
commit | 9f368d76848e31d21ec3c193fa8c92849b1362a1 (patch) | |
tree | eeca828b387714d3b4c6aa06512061b321cebba1 | |
parent | b6c00fab49efa54a25f41497e6218824ce806d2d (diff) | |
download | wix-9f368d76848e31d21ec3c193fa8c92849b1362a1.tar.gz wix-9f368d76848e31d21ec3c193fa8c92849b1362a1.tar.bz2 wix-9f368d76848e31d21ec3c193fa8c92849b1362a1.zip |
Fix two kinds of typos.
-rw-r--r-- | src/api/wix/WixToolset.Data/ErrorMessages.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs index b344a981..aa9750a8 100644 --- a/src/api/wix/WixToolset.Data/ErrorMessages.cs +++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs | |||
@@ -2238,7 +2238,7 @@ namespace WixToolset.Data | |||
2238 | 2238 | ||
2239 | public static Message BindVariableUnknown(SourceLineNumber sourceLineNumbers, string variableId) | 2239 | public static Message BindVariableUnknown(SourceLineNumber sourceLineNumbers, string variableId) |
2240 | { | 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 | } | 2242 | } |
2243 | 2243 | ||
2244 | public static Message NoSourceFiles() | 2244 | public static Message NoSourceFiles() |