File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 /**
Original file line number Diff line number Diff 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 ) ) ;
Original file line number Diff line number Diff 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 ) ) ;
You can’t perform that action at this time.
0 commit comments