Skip to content

Commit d57ac70

Browse files
committed
chore: moved comment above invocation and added a
space after the //
1 parent ea68264 commit d57ac70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lesson_10/libraries/src/loaders/kimberlee_haldane_loader.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ export class KimberleeHaldaneLoader implements Loader {
2828
fs.createReadStream('data/media_items.csv', 'utf-8').pipe(csv());
2929
for await (const row of readable) {
3030
const { id, type, title, year } = row;
31+
// Xavier helped me with line 33. I couldn't figure out why
32+
// MediaItems was asking for things not listed on the media items list.
3133
mediaItems.push(new MediaItem(id, title, type, year, []));
32-
//Xavier helped me with line 31. I couldn't figure out why
33-
//MediaItems was asking for things not listed on the media items list.
3434
}
3535

3636
return mediaItems;

0 commit comments

Comments
 (0)