Skip to content

Commit 0459edf

Browse files
committed
Added missing argument to export example
1 parent 25e4c8b commit 0459edf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function sumTwo(a, b) {
314314
return a + b;
315315
}
316316

317-
function sumThree(a, b) {
317+
function sumThree(a, b, c) {
318318
return a + b + c;
319319
}
320320

@@ -328,7 +328,7 @@ export function sumTwo(a, b) {
328328
return a + b;
329329
}
330330

331-
export function sumThree(a, b) {
331+
export function sumThree(a, b, c) {
332332
return a + b + c;
333333
}
334334
```
@@ -340,7 +340,7 @@ function sumTwo(a, b) {
340340
return a + b;
341341
}
342342

343-
function sumThree(a, b) {
343+
function sumThree(a, b, c) {
344344
return a + b + c;
345345
}
346346

0 commit comments

Comments
 (0)