diff --git a/Fluid/Parser/ErrorMessages.cs b/Fluid/Parser/ErrorMessages.cs index 6033b3cd..8de91056 100644 --- a/Fluid/Parser/ErrorMessages.cs +++ b/Fluid/Parser/ErrorMessages.cs @@ -14,6 +14,10 @@ public static class ErrorMessages public const string ParenthesesNotAllowed = "Parentheses are not allowed in order to group expressions. To enable the feature use the 'AllowParentheses' option."; [Obsolete("Error no longer used")] public const string IdentifierAfterMacro = "An identifier was expected after the 'macro' tag"; public const string IdentifierAfterTag = "An identifier was expected after the '{0}' tag"; + + [Obsolete("This constant is deprecated, please use ParenthesesAfterFunctionName instead.")] + public const string ParentesesAfterFunctionName = ParenthesesAfterFunctionName; + public const string ParenthesesAfterFunctionName = "Start of arguments '(' is expected after a function name"; } }