diff --git a/docs/java/collection/ArrayList-Grow.md b/docs/java/collection/ArrayList-Grow.md index 0a758cca79bd5821fdf64b07f432cb1431229973..bee837035990f14ec40b4c0e08b28ace981f0a57 100644 --- a/docs/java/collection/ArrayList-Grow.md +++ b/docs/java/collection/ArrayList-Grow.md @@ -223,7 +223,7 @@ public class ArraycopyTest { System.arraycopy(a, 2, a, 3, 3); a[2]=99; for (int i = 0; i < a.length; i++) { - System.out.println(a[i]); + System.out.print(a[i] + " "); } }