Skip to content

Commit

Permalink
Update NATO Spell.js
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasleplus authored Oct 22, 2024
1 parent 7b3bced commit cc1c223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascripts/NATO Spell.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if (selection === undefined) {
selection = selection.trim();
var result = '';
var i;
for (i = 0; i < selection.length; i++) {
for (i = 0; i < selection.length; i += 1) {
var c = selection.charAt(i);
var d = escape(c).replace(/%(..)/g, "&#x$1;");
if (d === c) {
Expand Down

0 comments on commit cc1c223

Please sign in to comment.