Skip to content

Commit 263dba8

Browse files
committed
Corrected pwGenResult name to pwResult
1 parent ecd7a34 commit 263dba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate-pw/generate-pw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ else { // run as CLI tool
140140
lowercase: !config.excludeLowerChars, uppercase: !config.excludeUpperChars,
141141
strict: config.strictMode
142142
};
143-
const pwGenResult = generatePassword(funcOptions);
143+
const pwResult = generatePassword(funcOptions);
144144
console.log('\n' + bw + ( Array.isArray(pwResult) ? pwResult.join('\n') : pwResult ) + nc);
145145
}
146146
}

0 commit comments

Comments
 (0)