We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197893e commit 2b771b2Copy full SHA for 2b771b2
liquidjava-verifier/src/main/java/liquidjava/utils/VariableFormatter.java
@@ -48,6 +48,6 @@ private static String toSuperscript(String number) {
48
}
49
50
private static boolean isSpecialIdentifier(String id) {
51
- return "fresh".equals(id) || "ret".equals(id);
+ return id.equals("fresh") || id.equals("ret");
52
53
0 commit comments