Cleanup phpdoc comments
[civicrm-core.git] / CRM / Utils / Geocode / Google.php
index 5034d9b96c83b85eb01917c6e95b0337ccf31ee9..7e315dc15dff2838b880bf2b331905fe1970f95b 100644 (file)
@@ -39,7 +39,7 @@
 class CRM_Utils_Geocode_Google {
 
   /**
-   * server to retrieve the lat/long
+   * Server to retrieve the lat/long
    *
    * @var string
    * @static
@@ -47,7 +47,7 @@ class CRM_Utils_Geocode_Google {
   static protected $_server = 'maps.googleapis.com';
 
   /**
-   * uri of service
+   * Uri of service
    *
    * @var string
    * @static
@@ -55,7 +55,7 @@ class CRM_Utils_Geocode_Google {
   static protected $_uri = '/maps/api/geocode/xml?sensor=false&address=';
 
   /**
-   * function that takes an address object and gets the latitude / longitude for this
+   * Function that takes an address object and gets the latitude / longitude for this
    * address. Note that at a later stage, we could make this function also clean up
    * the address into a more valid format
    *