Rename variables for clarity.

This commit is contained in:
Marco 2022-12-13 03:38:31 +01:00
parent 27f0e802ae
commit e696d3cd3d

View File

@ -62,10 +62,10 @@ class ChessCoordinate {
@override @override
String toString() { String toString() {
String row = this.row.toString(); String rowStr = row.toString();
String col = this.column.toString(); String colStr = column.toString();
return '$col$row'; return '$colStr$rowStr';
} }
@override @override