Skip to content

Commit d4c3be9

Browse files
committed
lint: fix minor typos
1 parent 6d11790 commit d4c3be9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/dto/user-reviews.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface CSFDUserReviewsConfig {
1111
includesOnly?: CSFDFilmTypes[];
1212
excludes?: CSFDFilmTypes[];
1313
/**
14-
* Fetch all ratings. (Warning: Use it wisely. Can be detected and banned. Consider using it together with `allPagesDelay` attribute)
14+
* Fetch all reviews. (Warning: Use it wisely. Can be detected and banned. Consider using it together with `allPagesDelay` attribute)
1515
*/
1616
allPages?: boolean;
1717
/**

src/services/user-ratings.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class UserRatingsScraper {
7878
if (config.includesOnly.some((include) => type === include)) {
7979
films.push(this.buildUserRatings(el));
8080
}
81-
// Filter exludes
81+
// Filter excludes
8282
} else if (config?.excludes?.length) {
8383
if (!config.excludes.some((exclude) => type === exclude)) {
8484
films.push(this.buildUserRatings(el));

src/services/user-reviews.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class UserReviewsScraper {
8080
if (config.includesOnly.some((include) => type === include)) {
8181
films.push(this.buildUserReviews(el));
8282
}
83-
// Filter exludes
83+
// Filter excludes
8484
} else if (config?.excludes?.length) {
8585
if (!config.excludes.some((exclude) => type === exclude)) {
8686
films.push(this.buildUserReviews(el));

0 commit comments

Comments
 (0)