From 90991600388f5e670e7c6c79648ed5e6943471b1 Mon Sep 17 00:00:00 2001 From: Martin Probst Date: Thu, 5 May 2016 12:46:07 -0700 Subject: [PATCH] chore: fix comment indent. --- modules/@angular/http/src/backends/xhr_backend.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/@angular/http/src/backends/xhr_backend.ts b/modules/@angular/http/src/backends/xhr_backend.ts index 1af9553209..3e57f04d0c 100644 --- a/modules/@angular/http/src/backends/xhr_backend.ts +++ b/modules/@angular/http/src/backends/xhr_backend.ts @@ -12,13 +12,13 @@ import {Observer} from 'rxjs/Observer'; import {isSuccess, getResponseURL} from '../http_utils'; /** -* Creates connections using `XMLHttpRequest`. Given a fully-qualified -* request, an `XHRConnection` will immediately create an `XMLHttpRequest` object and send the -* request. -* -* This class would typically not be created or interacted with directly inside applications, though -* the {@link MockConnection} may be interacted with in tests. -*/ + * Creates connections using `XMLHttpRequest`. Given a fully-qualified + * request, an `XHRConnection` will immediately create an `XMLHttpRequest` object and send the + * request. + * + * This class would typically not be created or interacted with directly inside applications, though + * the {@link MockConnection} may be interacted with in tests. + */ export class XHRConnection implements Connection { request: Request; /**