Skip to content

Commit

Permalink
Fix more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sibbl committed Jul 1, 2023
1 parent d48d39d commit c83b936
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scraper/ImmoscoutScraper.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ module.exports = class ImmoscoutScraper extends AbstractScraper {
""
);
} catch (ex) {
console.log("CATCHED error while scraping item", this.id, url, ex);
console.log("CAUGHT error while scraping item", this.id, url, ex);
result.gone = true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion scraper/StudentenWgScraper.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ module.exports = class WgGesuchtScraper extends AbstractScraper {
adresse: adresse
};
} catch (ex) {
console.log("CATCHED error while scraping item", this.id, url, ex);
console.log("CAUGHT error while scraping item", this.id, url, ex);
result.gone = true;
if (result.removed == null) {
result.removed = new Date();
Expand Down
2 changes: 1 addition & 1 deletion scraper/WgGesuchtScraper.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ module.exports = class WgGesuchtScraper extends AbstractScraper {
adresse
};
} catch (ex) {
console.log("CATCHED error while scraping item", this.id, url, ex);
console.log("CAUGHT error while scraping item", this.id, url, ex);
result.gone = true;
if (result.removed == null) {
result.removed = new Date();
Expand Down

0 comments on commit c83b936

Please sign in to comment.