Skip to content
This repository was archived by the owner on Sep 11, 2022. It is now read-only.

Commit 2ee061c

Browse files
committed
Adjust start state shape
1 parent e420ce0 commit 2ee061c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/cn/alumik/parsetree/lexer/fsm

src/main/java/cn/alumik/parsetree/lexer/fsm/NFA.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private MutableGraph getGraph() {
101101
}
102102
if (state == mStartState) {
103103
final MutableNode entryNode = mutNode("0")
104-
.add(Shape.NONE)
104+
.add(Shape.POINT)
105105
.add(Label.of(""))
106106
.addLink(to(node).with(Label.of("start")));
107107
graph.add(entryNode);

0 commit comments

Comments
 (0)