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:
crschmidt
2007-06-17 04:04:54 +00:00
parent 2298eb9fda
commit debffb8f12
10 changed files with 47 additions and 46 deletions
+5 -5
View File
@@ -21,7 +21,7 @@ OpenLayers.Format.WFS.prototype =
* only, which uses most of the code from the GML layer, and wraps
* it in transactional elements.
* @param {Object} options
* @param OpenLayers.Layer layer
* @param {OpenLayers.Layer} layer
*/
initialize: function(options, layer) {
@@ -42,7 +42,7 @@ OpenLayers.Format.WFS.prototype =
* write
* Takes a feature list, and generates a WFS-T Transaction
*
* @param Array
* @param {Array}
*/
write: function(features) {
@@ -88,7 +88,7 @@ OpenLayers.Format.WFS.prototype =
* insert
* Takes a feature, and generates a WFS-T Transaction "Insert"
*
* @param OpenLayers.Feature.Vector
* @param {OpenLayers.Feature.Vector} feature
*/
insert: function(feature) {
var insertNode = document.createElementNS(this.wfsns, 'wfs:Insert');
@@ -100,7 +100,7 @@ OpenLayers.Format.WFS.prototype =
* update
* Takes a feature, and generates a WFS-T Transaction "Update"
*
* @param OpenLayers.Feature.Vector
* @param {OpenLayers.Feature.Vector} feature
*/
update: function(feature) {
if (!feature.fid) { alert("Can't update a feature for which there is no FID."); }
@@ -133,7 +133,7 @@ OpenLayers.Format.WFS.prototype =
* delete
* Takes a feature, and generates a WFS-T Transaction "Delete"
*
* @param OpenLayers.Feature.Vector
* @param {OpenLayers.Feature.Vector} feature
*/
remove: function(feature) {
if (!feature.attributes.fid) {