From 33c7f74cb998a1271cd71f5fffad857b3db7eb53 Mon Sep 17 00:00:00 2001 From: Andrew Date: Fri, 8 Apr 2016 13:20:05 -0700 Subject: [PATCH] style(platform/browser): fix type spacing Closes #7980 --- modules/@angular/platform-browser/src/xhr/xhr_impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/platform-browser/src/xhr/xhr_impl.ts b/modules/@angular/platform-browser/src/xhr/xhr_impl.ts index 79a13688bd..70ee4cfa41 100644 --- a/modules/@angular/platform-browser/src/xhr/xhr_impl.ts +++ b/modules/@angular/platform-browser/src/xhr/xhr_impl.ts @@ -4,7 +4,7 @@ import {isPresent} from '../../src/facade/lang'; export class XHRImpl extends XHR { get(url: string): Promise { - var completer: PromiseCompleter < string >= PromiseWrapper.completer(); + var completer: PromiseCompleter = PromiseWrapper.completer(); var xhr = new XMLHttpRequest(); xhr.open('GET', url, true); xhr.responseType = 'text';