Skip to content

Commit 4a650ec

Browse files
authored
Obsolete ParentesesAfterFunctionName (#756)
1 parent e540bac commit 4a650ec

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Fluid/Parser/ErrorMessages.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ public static class ErrorMessages
1414
public const string ParenthesesNotAllowed = "Parentheses are not allowed in order to group expressions. To enable the feature use the 'AllowParentheses' option.";
1515
[Obsolete("Error no longer used")] public const string IdentifierAfterMacro = "An identifier was expected after the 'macro' tag";
1616
public const string IdentifierAfterTag = "An identifier was expected after the '{0}' tag";
17+
18+
[Obsolete("This constant is deprecated, please use ParenthesesAfterFunctionName instead.")]
19+
public const string ParentesesAfterFunctionName = ParenthesesAfterFunctionName;
20+
1721
public const string ParenthesesAfterFunctionName = "Start of arguments '(' is expected after a function name";
1822
}
1923
}

0 commit comments

Comments
 (0)