docs(core): fix tree-shakable spelling (#24057)

PR Close #24057
This commit is contained in:
Vani
2018-08-06 09:27:34 -07:00
committed by Kara Erickson
parent 29dfa5570a
commit 6e7d5f0925
2 changed files with 3 additions and 7 deletions

View File

@ -61,7 +61,7 @@ class MockRootScopeInjector implements Injector {
const injector =
new MockRootScopeInjector(Injector.create({providers: [{provide: MyDep, deps: []}]}));
// #docregion ShakeableInjectionToken
// #docregion ShakableInjectionToken
class MyService {
constructor(readonly myDep: MyDep) {}
}