Skip to content

Commit cb6d552

Browse files
authored
Updated multiplyNums in project-4
`// Write a function called multiplyNums that multiplies two numbers and passes the result to the callback` from `// Write a function called multiplyNums that adds two numbers and passes the result to the callback`
1 parent b2098d3 commit cb6d552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project-4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const sumNums = (x, y, cb) => {
1515
};
1616

1717
const multiplyNums = (x, y, cb) => {
18-
// Write a function called multiplyNums that adds two numbers and passes the result to the callback
18+
// Write a function called multiplyNums that multiplies two numbers and passes the result to the callback
1919
};
2020

2121
const contains = (collection, item, cb) => {

0 commit comments

Comments
 (0)