docs(clang): format updates

This commit is contained in:
Naomi Black 2015-06-01 23:14:19 -07:00
parent b746e0c9f0
commit dc060e8b64
5 changed files with 18 additions and 17 deletions

View File

@ -705,7 +705,8 @@ export class Directive extends Injectable {
/**
* Specifies a set of lifecycle hostListeners in which the directive participates.
*
* See {@link annotations/onChange}, {@link annotations/onDestroy}, {@link annotations/onAllChangesDone} for details.
* See {@link annotations/onChange}, {@link annotations/onDestroy}, {@link
* annotations/onAllChangesDone} for details.
*/
lifecycle: List<LifecycleEvent>;

View File

@ -78,8 +78,8 @@ export class TestBed {
* @return {Promise<ViewProxy>}
*/
createView(component: Type,
{context = null, html = null}: {context?: any,
html?: string} = {}): Promise<ViewProxy> {
{context = null,
html = null}: {context?: any, html?: string} = {}): Promise<ViewProxy> {
if (isBlank(component) && isBlank(context)) {
throw new BaseException('You must specified at least a component or a context');
}