clarify default behaviour in comment

This commit is contained in:
Joshua Fontany 2024-04-09 19:24:59 -07:00
parent daaac0545f
commit 5b349d02c2
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ exports.generateTiddlerFilepath = function(title,options) {
filepath += char.charCodeAt(0).toString();
});
}
// Add a uniquifier if the file already exists
// Add a uniquifier if the file already exists (default)
var fullPath = path.resolve(directory, filepath + extension);
if (!overwrite) {
var oldPath = (options.fileInfo) ? options.fileInfo.filepath : undefined,