From d31d4cd999e482d47ed79873df7a1fc322b971c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Fri, 6 Jun 2025 08:02:56 +0200 Subject: [PATCH] Update DependencyGraph.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> Signed-off-by: Fredrik Adelöw --- packages/backend-app-api/src/lib/DependencyGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend-app-api/src/lib/DependencyGraph.ts b/packages/backend-app-api/src/lib/DependencyGraph.ts index 2f9d6f8829..8b3de48ff2 100644 --- a/packages/backend-app-api/src/lib/DependencyGraph.ts +++ b/packages/backend-app-api/src/lib/DependencyGraph.ts @@ -194,7 +194,7 @@ export class DependencyGraph { let inFlight = 0; // Keep track of how many callbacks are in flight, so that we know if we got stuck // This keeps track of a counter of how many providers there are still left - // to be visited for each depdendency. This needs to be a counter instead of + // to be visited for each dependency. This needs to be a counter instead of // a flag for the special case where there are several providers of a given // value, even though there may be only one consumer of it. const producedRemaining = new Map();