diff --git a/modules/@angular/common/src/directives/ng_plural.ts b/modules/@angular/common/src/directives/ng_plural.ts
index acd1865de9..e014a5e9d2 100644
--- a/modules/@angular/common/src/directives/ng_plural.ts
+++ b/modules/@angular/common/src/directives/ng_plural.ts
@@ -21,9 +21,9 @@ import {SwitchView} from './ng_switch';
* @howToUse
* ```
*
- * there is nothing
- * there is one
- * there are a few
+ * there is nothing
+ * there is one
+ * there are a few
*
* ```
*
@@ -89,8 +89,8 @@ export class NgPlural {
* @howToUse
* ```
*
- * ...
- * ...
+ * ...
+ * ...
*
*```
*
diff --git a/modules/@angular/common/test/directives/ng_for_spec.ts b/modules/@angular/common/test/directives/ng_for_spec.ts
index 5aed2a140f..50bc9bfcfe 100644
--- a/modules/@angular/common/test/directives/ng_for_spec.ts
+++ b/modules/@angular/common/test/directives/ng_for_spec.ts
@@ -352,7 +352,7 @@ export function main() {
}));
it('should support injecting `NgFor` and get an instance of `NgForOf`', async(() => {
- const template = ``;
+ const template = ``;
fixture = createTestComponent(template);
const testDirective = fixture.debugElement.childNodes[0].injector.get(TestDirective);
const ngForOf = fixture.debugElement.childNodes[0].injector.get(NgForOf);
diff --git a/modules/@angular/common/test/directives/ng_plural_spec.ts b/modules/@angular/common/test/directives/ng_plural_spec.ts
index 3a19cfad4d..bdb71aba9d 100644
--- a/modules/@angular/common/test/directives/ng_plural_spec.ts
+++ b/modules/@angular/common/test/directives/ng_plural_spec.ts
@@ -50,8 +50,8 @@ export function main() {
it('should display the template according to the exact numeric value', async(() => {
const template = '
' +
'
' +
- '- you have no messages.
' +
- '- you have one message.
' +
+ '- you have no messages.
' +
+ '- you have one message.
' +
'
';
fixture = createTestComponent(template);
diff --git a/modules/@angular/core/test/linker/integration_spec.ts b/modules/@angular/core/test/linker/integration_spec.ts
index 4328794619..fdf2a60262 100644
--- a/modules/@angular/core/test/linker/integration_spec.ts
+++ b/modules/@angular/core/test/linker/integration_spec.ts
@@ -517,7 +517,8 @@ function declareTests({useJit}: {useJit: boolean}) {
it('should assign the TemplateRef to a user-defined variable', () => {
const fixture =
TestBed.configureTestingModule({declarations: [MyComp]})
- .overrideComponent(MyComp, {set: {template: ''}})
+ .overrideComponent(
+ MyComp, {set: {template: ''}})
.createComponent(MyComp);
const value = fixture.debugElement.childNodes[0].references['alice'];