Skip to content

Commit 2e12105

Browse files
Shinigami92ST-DDT
authored andcommitted
chore: use const instead of let
1 parent f66ce7b commit 2e12105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generateLocales.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const autoGeneratedCommentHeader = `/*
3131
* Run '${scriptCommand}' to update.
3232
*/`;
3333

34-
for (let locale of locales) {
34+
for (const locale of locales) {
3535
const localeDef: LocaleDefinition = require('../src/locales/' +
3636
locale).default;
3737
const localeTitle = localeDef.title;

0 commit comments

Comments
 (0)