split comment with "|" fixed #42

This commit is contained in:
林万程
2023-08-27 14:22:15 +08:00
parent 83e0a0a5ee
commit c86901c4be

View File

@@ -107,7 +107,7 @@ public abstract class BaseLangDoc extends EditorLinePainter {
doc = before + " = " + doc;
}
} else {
doc = before + " " + doc;
doc = before + " | " + doc;
}
return doc;
}