[FIX] typo in comment

bzr revid: xmo@openerp.com-20120124101043-f8mgwbtj3zrao5na
This commit is contained in:
Xavier Morel 2012-01-24 11:10:43 +01:00
parent 8bd3c7035e
commit aebe04d321
1 changed files with 1 additions and 1 deletions

View File

@ -1212,7 +1212,7 @@ session.web.View = session.web.Widget.extend(/** @lends session.web.View# */{
session.web.json_node_to_xml = function(node, human_readable, indent) {
// For debugging purpose, this function will convert a json node back to xml
// Maybe usefull for xml view editor
// Maybe useful for xml view editor
indent = indent || 0;
var sindent = (human_readable ? (new Array(indent + 1).join('\t')) : ''),
r = sindent + '<' + node.tag,