From 1b2e9aa13dd537b943fb962c5c0120d8a2af5489 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 17 Mar 2014 17:18:34 +0100 Subject: [PATCH] Fix return types --- src/ol/format/wfsformat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/format/wfsformat.js b/src/ol/format/wfsformat.js index 330c900dbb..0b251f0257 100644 --- a/src/ol/format/wfsformat.js +++ b/src/ol/format/wfsformat.js @@ -547,7 +547,7 @@ ol.format.WFS.writeGetFeature_ = function(node, featureTypes, objectStack) { /** * @param {olx.format.WFSWriteGetFeatureOptions} options Options. - * @return {ArrayBuffer|Node|Object|string} Result. + * @return {Node} Result. */ ol.format.WFS.prototype.writeGetFeature = function(options) { var node = ol.xml.createElementNS('http://www.opengis.net/wfs', @@ -598,7 +598,7 @@ ol.format.WFS.prototype.writeGetFeature = function(options) { * @param {Array.} updates The features to update. * @param {Array.} deletes The features to delete. * @param {olx.format.WFSWriteTransactionOptions} options Write options. - * @return {ArrayBuffer|Node|Object|string} Result. + * @return {Node} Result. */ ol.format.WFS.prototype.writeTransaction = function(inserts, updates, deletes, options) {