From 726859494a1780faee145f02a479b6a2ca517796 Mon Sep 17 00:00:00 2001 From: tomoyashibata Date: Sat, 27 Dec 2014 23:49:14 +0900 Subject: [PATCH] Fix class name "feed" in the case of an error occurs during instantiation. (Uncaught TypeError: undefined is not a function) --- google.feeds/google.feed.api.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google.feeds/google.feed.api.d.ts b/google.feeds/google.feed.api.d.ts index 4db5a2f75..06ba29139 100644 --- a/google.feeds/google.feed.api.d.ts +++ b/google.feeds/google.feed.api.d.ts @@ -4,7 +4,7 @@ // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module google.feeds { - export class feed { + export class Feed { constructor(); constructor(url: string); findFeeds(query?: string, callback?: (result: findResult) => void ): void;