From 2d6cf70b73266ef561280e8934057f48a18e77d7 Mon Sep 17 00:00:00 2001
From: Alex Reisner <alex@alexreisner.com>
Date: Tue, 8 Feb 2011 11:02:22 -0500
Subject: [PATCH] It's "Google Geocoding API", not "Geocoder API"

---
 lib/geocoder/lookup.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/geocoder/lookup.rb b/lib/geocoder/lookup.rb
index 95327aca..6db0de18 100644
--- a/lib/geocoder/lookup.rb
+++ b/lib/geocoder/lookup.rb
@@ -50,16 +50,16 @@ module Geocoder
       begin
         doc = ActiveSupport::JSON.decode(fetch_data(query, reverse))
       rescue SocketError
-        warn "Google Geocoder API connection cannot be established."
+        warn "Google Geocoding API connection cannot be established."
       rescue TimeoutError
-        warn "Google Geocoder API not responding fast enough " +
+        warn "Google Geocoding API not responding fast enough " +
           "(see Geocoder::Configuration.timeout to set limit)."
       end
 
       case doc['status']; when "OK"
         doc
       when "OVER_QUERY_LIMIT"
-        warn "Google Geocoder API error: quota exceeded."
+        warn "Google Geocoding API error: quota exceeded."
       end
     end
 
-- 
GitLab