From fc728d0cfb07f9941c182bca67aa10dea7e3d9df Mon Sep 17 00:00:00 2001 From: Boaz Rymland Date: Sun, 12 Apr 2020 14:04:47 +0300 Subject: [PATCH] docs: fix typo from singular to plural spelling (#36586) This commit fixes the spelling of the singular form of the word function to the plural spelling in packages/core/src/application_init.ts PR Close #36586 --- packages/core/src/application_init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/application_init.ts b/packages/core/src/application_init.ts index 7293d7c403..d1fabf99da 100644 --- a/packages/core/src/application_init.ts +++ b/packages/core/src/application_init.ts @@ -15,7 +15,7 @@ import {Inject, Injectable, InjectionToken, Optional} from './di'; * A [DI token](guide/glossary#di-token "DI token definition") that you can use to provide * one or more initialization functions. * - * The provided function are injected at application startup and executed during + * The provided functions are injected at application startup and executed during * app initialization. If any of these functions returns a Promise, initialization * does not complete until the Promise is resolved. *