Updated README.md.

master
Jag Talon 2013-03-14 14:50:30 -04:00
parent a9dede1c2d
commit a7f9ec6af5
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ Sometimes, all a plugin needs is the user's location. This is where the Location
```perl
# Phoenixville, Pennsylvania, United States
my $location = join(" ", $loc->city . ', ', $loc->region_name . ', ', $loc->country_name);
my $location = join(", ", $loc->city, $loc->region_name, $loc->country_name);
```
When testing on `duckpan`, the plugin will always point you to "Phoenixville, Pennsylvania, United States," but don't worry, because it will show the real location once it's live.