Skip to content

Commit ceff69c

Browse files
committed
Fix: password generator typo
1 parent d8019c6 commit ceff69c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Protest/Front/passwordgen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ class PassGen extends Window {
510510
}
511511
}
512512

513-
if (etc.length === 0) etc = "less then a second";
513+
if (etc.length === 0) etc = "less than a second";
514514

515515
if (eon > 999999999999999) {
516516
this.ttcLabel.textContent = "TTC: Infinity";

Protest/Tools/PasswordStrength.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public static string CalculateTtc(int length, int pool) {
290290
}
291291

292292
if (ttc.Length == 0) {
293-
ttc = "less then a second";
293+
ttc = "less than a second";
294294
}
295295

296296
return ttc;

0 commit comments

Comments
 (0)