diff --git a/6-methods/28-tv-channels.java b/6-methods/28-tv-channels.java index c127d73..e430537 100644 --- a/6-methods/28-tv-channels.java +++ b/6-methods/28-tv-channels.java @@ -20,7 +20,7 @@ public static double multiply(double num1, double num2) { } public static void main(String[] args) { - System.out.println("The result is " + multipy(new int[] { 1, 2, 3, 4, 5 })); + System.out.println("The result is " + multiply(new int[] { 1, 2, 3, 4, 5 })); System.out.println("The result is " + multiply(13, 8, 2)); System.out.println("The result is " + multiply(7, 9, 3)); System.out.println("The result is " + multiply(233.9, 0.09));