docs(template-syntax/structural-directives): refresh both guides for style, accuracy, understanding (#3110)

Move details of structural directives from template-syntax to structural-directives guide
Add <ng-container> to structural-directives
Fix samples in both guides
Touch up glossary
Better conformance to google doc guidelines: we->you
closes #2303, #2885
This commit is contained in:
Ward Bell
2017-02-06 19:06:13 -08:00
committed by GitHub
parent 390e28080c
commit f24b830c8a
60 changed files with 2820 additions and 1378 deletions
@@ -191,7 +191,7 @@ function heroModuleSetup() {
}));
// #docregion title-case-pipe
it('should convert hero name to Title Case', fakeAsync(() => {
it('should convert hero name to Title Case', () => {
const inputName = 'quick BROWN fox';
const titleCaseName = 'Quick Brown Fox';
@@ -205,7 +205,7 @@ function heroModuleSetup() {
fixture.detectChanges();
expect(page.nameDisplay.textContent).toBe(titleCaseName);
}));
});
// #enddocregion title-case-pipe
// #enddocregion selected-tests
// #docregion route-good-id