docs(elements): fix typo (tranformation --> transformation) (#25600)

PR Close #25600
This commit is contained in:
George Kalpakas 2018-08-21 21:30:10 +03:00 committed by Matias Niemelä
parent a37bcc3bfe
commit 658f49f650
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ export interface NgElementConfig {
injector: Injector; injector: Injector;
/** /**
* An optional custom strategy factory to use instead of the default. * An optional custom strategy factory to use instead of the default.
* The strategy controls how the tranformation is performed. * The strategy controls how the transformation is performed.
*/ */
strategyFactory?: NgElementStrategyFactory; strategyFactory?: NgElementStrategyFactory;
} }
@ -194,4 +194,4 @@ export function createCustomElement<P>(
}); });
return (NgElementImpl as any) as NgElementConstructor<P>; return (NgElementImpl as any) as NgElementConstructor<P>;
} }