Skip to content

Commit 986216b

Browse files
authored
Fix method name (#76)
1 parent 6ff2982 commit 986216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/return_values/challenges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ double multiply(double x, double y) {
7777
void main() {
7878
int x = 5;
7979
int y = 8;
80-
int z = subtractInt(add(4, 5), mul(4, 2));
80+
int z = subtractInt(add(4, 5), multiply(4, 2));
8181
8282
System.out.println(z);
8383
}

0 commit comments

Comments
 (0)