Skip to content

Commit

Permalink
Use a single space to separate non-whitespace characters
Browse files Browse the repository at this point in the history
  • Loading branch information
PeresadaKostya committed Jul 25, 2023
1 parent ed09981 commit 5563552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/core/basesyntax/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public static void main(String[] args) {
Truck truck = new Truck();
Buldozer buldozer = new Buldozer();
Excavator excavator = new Excavator();
Machine [] machine = new Machine[] {truck, buldozer, excavator};
Machine[] machine = new Machine[] {truck, buldozer, excavator};
for (int i = 0; i < machine.length; i++) {
machine[i].doWork();
machine[i].stopwork();
Expand Down

0 comments on commit 5563552

Please sign in to comment.