Skip to content

Commit

Permalink
Refactor Transiction toString method to use Unicode multiplication sy…
Browse files Browse the repository at this point in the history
…mbol
  • Loading branch information
Tony0380 committed Jun 11, 2024
1 parent 171eb93 commit 243f3a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void setEnd(State end) {
* @return The name of the transiction.
*/
public String getName() {
return start.getName() + " x " + symbol + " -> " + end.getName();
return start.getName() + " × " + symbol + " -> " + end.getName();
}

/**
Expand Down

0 comments on commit 243f3a5

Please sign in to comment.