File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
qudtlib-model/src/main/java/io/github/qudtlib/model Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ public Optional<String> getSymbol() {
510
510
if (fu .exponent > 0 ) {
511
511
String symbol = fu .unit .getSymbol ().orElse (null );
512
512
if (symbol == null ) return Optional .empty ();
513
- sb .append (symbol ).append (getExponentString (fu .exponent )).append ("⋅ " );
513
+ sb .append (symbol ).append (getExponentString (fu .exponent )).append ("· " );
514
514
} else {
515
515
hasDenominator = true ;
516
516
}
@@ -527,7 +527,7 @@ public Optional<String> getSymbol() {
527
527
if (symbol == null ) return Optional .empty ();
528
528
sbDenom .append (symbol );
529
529
sbDenom .append (getExponentString (fu .exponent ));
530
- sbDenom .append ("⋅ " );
530
+ sbDenom .append ("· " );
531
531
cnt ++;
532
532
}
533
533
}
You can’t perform that action at this time.
0 commit comments