Skip to content

Commit 4553d7e

Browse files
author
Jeff
authored
typographical changes
1 parent a2e73ac commit 4553d7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/callbacks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22

3-
/* For portion of the assignment your job is to write functions
3+
/* For a portion of the assignment your job is to write functions
44
* so that each function invocation below works. You're working backwards.
55
*
66
* There are no tests for this file.
@@ -50,7 +50,7 @@ sumNums(5, 10, (sum) => {
5050
console.log(`The sum is ${sum}.`);
5151
});
5252

53-
// Write a function called multiplyNums that adds two numbers and passes the result to the callback
53+
// Write a function called multiplyNums that multiplies two numbers and passes the result to the callback
5454
// code here
5555

5656
multiplyNums(5, 10, (product) => {

0 commit comments

Comments
 (0)