Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ieremenko committed Nov 11, 2018
1 parent f486ebc commit 357fea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SqlDatabase/Scripts/TextScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal static string ApplyVariables(string sql, IVariables variables, Action<s
var value = variables.GetValue(name);
if (value == null)
{
throw new InvalidOperationException("Variable [{0}] is not defined.".FormatWith(name));
throw new InvalidOperationException("Variable [{0}] not defined.".FormatWith(name));
}
onReplace?.Invoke(name, value);
Expand Down

0 comments on commit 357fea6

Please sign in to comment.