Skip to content

Commit 1136b07

Browse files
author
EgonOlsen
committed
Comment
1 parent 1c10791 commit 1136b07

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/sixtyfour/parser/Parser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,7 @@ private static Atom createAtom(CompilerConfig config, String part, Map<String, T
10111011
* @return true, if its a term placeholder
10121012
*/
10131013
private static boolean isTermPlaceholder(String txt) {
1014+
// Note that the second part of this check isn't equal to endsWith("}")...for example: {t0}+{t1}
10141015
return txt.startsWith("{") && txt.indexOf('}') == (txt.length() - 1);
10151016
}
10161017

0 commit comments

Comments
 (0)