From 1de2d29f96c5b8212f6e5c8e5064bb106e17bfb1 Mon Sep 17 00:00:00 2001 From: Trotyl Yu Date: Sun, 11 Oct 2015 20:52:56 +0800 Subject: [PATCH] typo(directives): Fixed the mistake of leading number The leading number with a dot and space in the Markdown will be compiled to `ol > li`. The `4 and 6. ` in the docs mistakenly add a new line before the `6. ` cause a misunderstand by the markdown engine. Closes #4664 --- modules/angular2/src/core/metadata/directives.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/metadata/directives.ts b/modules/angular2/src/core/metadata/directives.ts index 0f7763a904..7a0a860eab 100644 --- a/modules/angular2/src/core/metadata/directives.ts +++ b/modules/angular2/src/core/metadata/directives.ts @@ -198,7 +198,7 @@ import {ViewEncapsulation} from 'angular2/src/core/metadata/view'; * ``` * * This directive would be instantiated with a {@link QueryList} which contains `Dependency` 4 and - * 6. Here, `Dependency` 5 would not be included, because it is not a direct child. + * `Dependency` 6. Here, `Dependency` 5 would not be included, because it is not a direct child. * * ### Injecting a live collection of descendant directives *