diff --git a/lib/geocoder/sql.rb b/lib/geocoder/sql.rb
index 13b186cc13de17b310e93e37666e995425a06af3..e2714ee436500a2cc7594e3f5a288d6fc9d65ea3 100644
--- a/lib/geocoder/sql.rb
+++ b/lib/geocoder/sql.rb
@@ -4,8 +4,8 @@ module Geocoder
 
     ##
     # Distance calculation for use with a database that supports POWER(),
-    # SQRT(), PI(), and trigonometric functions SIN(), COS(), ASIN(),
-    # ATAN2(), DEGREES(), and RADIANS().
+    # SQRT(), PI(), and trigonometric functions SIN(), COS(), ASIN(), 
+    # ATAN2().
     #
     # Based on the excellent tutorial at:
     # http://www.scribd.com/doc/2569355/Geo-Distance-Search-with-MySQL
@@ -59,6 +59,9 @@ module Geocoder
     # and an options hash which must include a :bearing value
     # (:linear or :spherical).
     #
+    # For use with a database that supports MOD() and trigonometric functions
+    # SIN(), COS(), ASIN(), ATAN2().
+    #
     # Based on:
     # http://www.beginningspatial.com/calculating_bearing_one_point_another
     #