Skip to content

Commit e078e4b

Browse files
Fix the comments
1 parent e1bce22 commit e078e4b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/test/java/net/marcellperger/mathexpr/MathSymbolTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ void test_fmt() {
2020

2121
@Test
2222
void test_fmt__pow() {
23-
// TODO decide spacing: `2.2**3.1` or `2.2 ** 3.1`
2423
assertExprFmt(new ObjStringPair(new PowOperation(new BasicDoubleSymbol(0.2), new BasicDoubleSymbol(5.5)), "0.2**5.5"));
2524
assertExprFmt(new ObjStringPair(new PowOperation(new PowOperation(new BasicDoubleSymbol(0.2), new BasicDoubleSymbol(5.5)), new BasicDoubleSymbol(3.3)),
2625
"(0.2**5.5)**3.3"));

src/test/java/net/marcellperger/mathexpr/parser/ParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public void close() {
213213
restoreCache();
214214
}
215215

216-
// region implementation details (ctor, clearCache, restoreCache
216+
// region implementation details (ctor, clearCache, restoreCache)
217217
private WithSuppressingCache() {}
218218

219219
private Map<SymbolInfo, Optional<BinOpBiConstructor>> origCache = null;

0 commit comments

Comments
 (0)