From 0ae59513dbee9e55a6c35194b3fc30c5e6fff05a Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 9 Nov 2007 18:19:14 +0000 Subject: [PATCH] minor space and comment changes only (for KML format) git-svn-id: http://svn.openlayers.org/trunk/openlayers@5160 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Format/KML.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/OpenLayers/Format/KML.js b/lib/OpenLayers/Format/KML.js index d559109e7e..91f4c7f982 100644 --- a/lib/OpenLayers/Format/KML.js +++ b/lib/OpenLayers/Format/KML.js @@ -112,7 +112,7 @@ OpenLayers.Format.KML = OpenLayers.Class(OpenLayers.Format.XML, { * feature, and calls parseAttributes() to get attribute data out. * * Parameters: - * node - {} + * node - {DOMElement} * * Returns: * {} A vector feature. @@ -320,7 +320,7 @@ OpenLayers.Format.KML = OpenLayers.Class(OpenLayers.Format.XML, { * Method: parseAttributes * * Parameters: - * node - {} + * node - {DOMElement} * * Returns: * {Object} An attributes object. @@ -355,12 +355,12 @@ OpenLayers.Format.KML = OpenLayers.Class(OpenLayers.Format.XML, { * Accept Feature Collection, and return a string. * * Parameters: - * features - An array of features. + * features - {Array(} An array of features. * * Returns: * {String} A KML string. */ - write: function(features) { + write: function(features) { if(!(features instanceof Array)) { features = [features]; } @@ -371,7 +371,7 @@ OpenLayers.Format.KML = OpenLayers.Class(OpenLayers.Format.XML, { } kml.appendChild(folder); return OpenLayers.Format.XML.prototype.write.apply(this, [kml]); - }, + }, /** * Method: createFolderXML