Updated LOG message;

This commit is contained in:
Arkadiusz Hypki 2023-03-28 15:50:03 +02:00
parent 578eace71c
commit 8e628a9c72
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public abstract class Figure {
@Override
public String toString() {
return getName() + " with ID = " + getId()
return getName() + " with id = " + getId()
+ " has area " + computeArea();
}