From d449d94e5bab4c36368eb814bebf193a20f1b6a7 Mon Sep 17 00:00:00 2001 From: Myriam Denizot <58182901+mydmoov@users.noreply.github.com> Date: Mon, 21 Apr 2025 13:33:44 +0200 Subject: [PATCH] update missing l in multiply --- 6-methods/28-tv-channels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));