Skip to content

Commit b0771b8

Browse files
rvmoldovadimadeveatii
authored andcommitted
add missing semicolon
1 parent 915c881 commit b0771b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ const contributions = [
773773
];
774774

775775
const totalOutput = contributions
776-
.reduce((totalLines, output) => totalLines + output.linesOfCode, 0)
776+
.reduce((totalLines, output) => totalLines + output.linesOfCode, 0);
777777
```
778778

779779
**[⬆ back to top](#table-of-contents)**
@@ -2039,7 +2039,7 @@ import { promisify } from 'util';
20392039
const write = util.promisify(writeFile);
20402040

20412041
function downloadPage(url: string, saveTo: string): Promise<string> {
2042-
return get(url).then(response => write(saveTo, response))
2042+
return get(url).then(response => write(saveTo, response));
20432043
}
20442044

20452045
downloadPage('https://en.wikipedia.org/wiki/Robert_Cecil_Martin', 'article.html')

0 commit comments

Comments
 (0)