style(platform/browser): fix type spacing

Closes #7980
This commit is contained in:
Andrew 2016-04-08 13:20:05 -07:00 committed by Misko Hevery
parent cb84cbf545
commit 33c7f74cb9
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import {isPresent} from '../../src/facade/lang';
export class XHRImpl extends XHR {
get(url: string): Promise<string> {
var completer: PromiseCompleter < string >= PromiseWrapper.completer();
var completer: PromiseCompleter <string> = PromiseWrapper.completer();
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'text';