diff options
author | snaka | 2010-03-22 13:51:38 +0000 |
---|---|---|
committer | snaka | 2010-03-22 13:51:38 +0000 |
commit | 0002fd0a08a6fea9e4af7d37271d9adc21dd487a (patch) | |
tree | 23b53c4f99a41686c3ec08bfabff4a61c244dafe /xpcom_inspector.js | |
parent | 440269ec48e13dcde047aa6558bdab79333e41e2 (diff) | |
download | vimperator-plugins-0002fd0a08a6fea9e4af7d37271d9adc21dd487a.tar.bz2 |
typo修正とか
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37076 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'xpcom_inspector.js')
-rw-r--r-- | xpcom_inspector.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xpcom_inspector.js b/xpcom_inspector.js index ebffef6..51e486d 100644 --- a/xpcom_inspector.js +++ b/xpcom_inspector.js @@ -114,7 +114,7 @@ commands.addUserCommand(['lscc'], 'List XPCOM class', liberator.echo(liberator.XPCOM.listClass(args[0], null, true), true); } else if (args[1] in Ci){ let instance = tree[toKey(args[0])].interface[args[1]].create(); - echo(liberator.modules.util.objectToString(instance, true), true); + liverator.echo(liberator.modules.util.objectToString(instance, true), true); } else { liberator.echo(liberator.XPCOM.listClass(args[0], args[1], true), true); } @@ -148,7 +148,7 @@ var manager = { toHTML: function(list){ var str = ['<dl>']; list.forEach(function(o){ - str.push('<dt>' + o.name + ' ' + o.number + '</td>'); + str.push('<dt>' + o.name + ' ' + o.number + '</dt>'); if (o.interface){ for (let i in o.interface){ str.push('<dd>' + o.interface[i].name + ' ' + o.interface[i].number + '</dd>'); |