Skip to content

Commit

Permalink
Obsolete ParentesesAfterFunctionName (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco authored Feb 12, 2025
1 parent e540bac commit 4a650ec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Fluid/Parser/ErrorMessages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}

0 comments on commit 4a650ec

Please sign in to comment.