File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -773,7 +773,7 @@ const contributions = [
773773];
774774
775775const 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';
20392039const write = util .promisify (writeFile );
20402040
20412041function 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
20452045downloadPage (' https://en.wikipedia.org/wiki/Robert_Cecil_Martin' , ' article.html' )
You can’t perform that action at this time.
0 commit comments