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
This commit is contained in:
Boaz Rymland 2020-04-12 14:04:47 +03:00 committed by Andrew Kushnir
parent 970d10c671
commit 5e742d29d0
1 changed files with 1 additions and 1 deletions

View File

@ -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.
*