Fix typos in documentation strings.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@3347 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -76,7 +76,7 @@ OpenLayers.Format.GML.prototype =
|
||||
* This function is the core of the GML parsing code in OpenLayers.
|
||||
* It creates the geometries that are then attached to the returned
|
||||
* feature, and calls parseAttributes() to get attribute data out.
|
||||
* @param DOMElement xmlNode
|
||||
* @param {DOMElement} xmlNode
|
||||
*/
|
||||
parseFeature: function(xmlNode) {
|
||||
var geom;
|
||||
@@ -181,7 +181,7 @@ OpenLayers.Format.GML.prototype =
|
||||
* recursive function parse the attributes of a GML node.
|
||||
* Searches for any child nodes which aren't geometries,
|
||||
* and gets their value.
|
||||
* @param DOMElement xmlNode
|
||||
* @param {DOMElement} xmlNode
|
||||
*/
|
||||
parseAttributes: function(xmlNode) {
|
||||
var nodes = xmlNode.childNodes;
|
||||
@@ -302,8 +302,8 @@ OpenLayers.Format.GML.prototype =
|
||||
/**
|
||||
* Accept an OpenLayers.Feature.Vector, and build a geometry for it.
|
||||
*
|
||||
* @param OpenLayers.Feature.Vector feature
|
||||
* @returns DOMElement
|
||||
* @param {OpenLayers.Feature.Vector} feature
|
||||
* @returns {DOMElement}
|
||||
*/
|
||||
createFeatureXML: function(feature) {
|
||||
var geometryNode = this.buildGeometryNode(feature.geometry);
|
||||
|
||||
Reference in New Issue
Block a user