From 4d21b775a0d0042a9699e8e5ac7bb54c561d0772 Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Wed, 4 Jun 2025 10:25:25 +0200 Subject: [PATCH] fix: correct comment typo --- apps/workers/src/app/stars.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/workers/src/app/stars.controller.ts b/apps/workers/src/app/stars.controller.ts index 7ba1e9a8..c9b4c8d2 100644 --- a/apps/workers/src/app/stars.controller.ts +++ b/apps/workers/src/app/stars.controller.ts @@ -13,7 +13,7 @@ export class StarsController { ) {} @EventPattern('check_stars', Transport.REDIS) async checkStars(data: { login: string }) { - // no to be effected by the limit, we scrape the HTML instead of using the API + // not to be affected by the limit, we scrape the HTML instead of using the API const loadedHtml = await ( await fetch(`https://github.com/${data.login}`) ).text();