Fixed the typos Mario noticed

print-window-tiddler
Stephan Hradek 2013-12-19 20:38:59 +01:00
rodzic 42ba6852d1
commit 04077549ca
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -173,10 +173,10 @@ exports.tiddlerExists = function(title) {
Generate an unused title from the specified base
*/
exports.generateNewTitle = function(baseTitle) {
var c = 0
var c = 0,
title = baseTitle;
while(this.tiddlerExists(title) {
var title = baseTitle + " " + (++c);
title = baseTitle + " " + (++c);
};
return title;
};