From a7f9ec6af530c01202cd2f88de15b46cf3911504 Mon Sep 17 00:00:00 2001 From: Jag Talon Date: Thu, 14 Mar 2013 14:50:30 -0400 Subject: [PATCH] Updated README.md. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7fe62d4de..433148c5e 100644 --- a/README.md +++ b/README.md @@ -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.