www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 4e29a821b7aaea3aae4b1de3ada089610f8079d7
parent b23632f6c3338550735336c6831e86a1b16a381b
Author: aurimasv <aurimas.dev@gmail.com>
Date:   Fri,  9 Mar 2012 19:38:00 -0600

Fixed typo

Diffstat:
Mchrome/content/zotero/xpcom/utilities.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -185,7 +185,7 @@ Zotero.Utilities = { .replace(/\s*([\u002D\u00AD\u2010-\u2015\u2212\u2E3A\u2E3B])\s*/,'$1') .split(/[\s\.]+/); var newFirstName = ''; - for(var i=0, n=names.length; i<n; n++) { + for(var i=0, n=names.length; i<n; i++) { newFirstName += names[i]; if(names[i].length == 1) newFirstName += '.'; newFirstName += ' ';