aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/VariableResolver.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/VariableResolver.cs')
-rw-r--r--src/WixToolset.Core/VariableResolver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/VariableResolver.cs b/src/WixToolset.Core/VariableResolver.cs
index 189fb883..3e0b65b3 100644
--- a/src/WixToolset.Core/VariableResolver.cs
+++ b/src/WixToolset.Core/VariableResolver.cs
@@ -99,7 +99,7 @@ namespace WixToolset.Core
99 var sb = new StringBuilder(value); 99 var sb = new StringBuilder(value);
100 100
101 // notice how this code walks backward through the list 101 // notice how this code walks backward through the list
102 // because it modifies the string as we through it 102 // because it modifies the string as we move through it
103 for (int i = matches.Count - 1; 0 <= i; i--) 103 for (int i = matches.Count - 1; 0 <= i; i--)
104 { 104 {
105 var variableNamespace = matches[i].Groups["namespace"].Value; 105 var variableNamespace = matches[i].Groups["namespace"].Value;