1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 16:30:46 +00:00

Fixed typo

This commit is contained in:
Jeremy Ruston 2012-02-22 22:24:37 +00:00
parent c918bb6b35
commit 6d96632bf6

View File

@ -87,7 +87,7 @@ var ArgParser = function(argString,options) {
for(var t=0; t<this.byPos.length; t++) {
n = this.byPos[t].n;
v = this.byPos[t].v;
if(this.byName.hasOwnProperty("n"))
if(this.byName.hasOwnProperty(n))
this.byName[n].push(v);
else
this.byName[n] = [v];