Filling our log with cruft, adding meaningless conflicts for merges, and changing a comment style that ndocs could care less about, this commit changes Return to Returns (closes #945).

git-svn-id: http://svn.openlayers.org/trunk/openlayers@4110 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-08-29 18:44:10 +00:00
parent b5ef77096c
commit c2148651ed
78 changed files with 397 additions and 388 deletions

View File

@@ -54,7 +54,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* Create a clone of this geometry. Does not set any non-standard
* properties of the cloned geometry.
*
* Return:
* Returns:
* {<OpenLayers.Geometry>} An exact clone of this geometry.
*/
clone: function() {
@@ -106,7 +106,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* Get the bounds for this Geometry. If bounds is not set, it
* is calculated again, this makes queries faster.
*
* Return:
* Returns:
* {<OpenLayers.Bounds>}
*/
getBounds: function() {
@@ -136,7 +136,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* toleranceLon - {float} Optional tolerance in Geometric Coords
* toleranceLat - {float} Optional tolerance in Geographic Coords
*
* Return:
* Returns:
* {Boolean} Whether or not the geometry is at the specified location
*/
atPoint: function(lonlat, toleranceLon, toleranceLat) {
@@ -163,7 +163,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* Calculate the length of this geometry. This method is defined in
* subclasses.
*
* Return:
* Returns:
* {Float} The length of the collection by summing its parts
*/
getLength: function() {
@@ -176,7 +176,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* Method: getArea
* Calculate the area of this geometry. This method is defined in subclasses.
*
* Return:
* Returns:
* {Float} The area of the collection by summing its parts
*/
getArea: function() {
@@ -189,7 +189,7 @@ OpenLayers.Geometry = OpenLayers.Class({
* Method: toString
* Returns the Well-Known Text representation of a geometry
*
* Return:
* Returns:
* {String} Well-Known Text
*/
toString: function() {