Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
vvanhee committed Feb 8, 2011
1 parent 9d74bca commit a642030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GoogleLocalConnection.m
Expand Up @@ -103,7 +103,7 @@ - (void)connectionDidFinishLoading:(NSURLConnection *)conn
connectionIsActive = NO;
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSError *jsonError = nil;
SBJSON *json = [[SBJSON new] autorelease];
SBJSONParser *json = [[SBJSONParser new] autorelease];

NSDictionary *parsedJSON = [json objectWithString:responseString error:&jsonError];
if ([jsonError code]==0) {
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -4,7 +4,7 @@ Some iOS (Objective-C) classes for implementing [Google's Local Search API JSON

Note that this API has been unfortunately deprecated by Google in late 2010, so it will stop working around late 2013.

A brief overview of this class is also available on the [Tot a Go Go iPhone App Blog][TAGGBlogPost].
A detailed guide to implementing this (for the novice) is also available on the [Tot a Go Go iPhone App Blog][TAGGBlogPost].

## Usage

Expand Down

0 comments on commit a642030

Please sign in to comment.