Skip to content

Commit

Permalink
Fixed bug in String Interpolator, now showing dynamic variables
Browse files Browse the repository at this point in the history
  • Loading branch information
SethFalco committed Feb 5, 2020
1 parent 2c9df61 commit 05e2977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageCaster/StringInterpolator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public string Interpolate(string source)
variables.Add(key, value.Invoke());
}

foreach ((string key, object value) in Variables)
foreach ((string key, object value) in variables)
{
if (value != null)
{
Expand Down

0 comments on commit 05e2977

Please sign in to comment.