From bb0dc8c4e030d3c3f30ea3f6bfa46b6f816cd488 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 7 Jan 2026 17:00:49 +0100 Subject: [PATCH] refactor(core): typo in stability debugging warning message untility -> utility --- packages/core/src/application/stability_debug_impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/application/stability_debug_impl.ts b/packages/core/src/application/stability_debug_impl.ts index e72b2d452b9..7fba29f0623 100644 --- a/packages/core/src/application/stability_debug_impl.ts +++ b/packages/core/src/application/stability_debug_impl.ts @@ -63,7 +63,7 @@ export function provideStabilityDebugging(): EnvironmentProviders { provideAppInitializer(() => { if (typeof ngDevMode === 'undefined' || !ngDevMode) { console.warn( - 'Stability debugging untility was provided in production mode. ' + + 'Stability debugging utility was provided in production mode. ' + 'This will cause debug code to be included in production bundles. ' + 'If this is intentional because you are debugging stability issues in a production environment, you can ignore this warning.', );