Skip to content

Commit 124115d

Browse files
committed
style: revert let -> const
1 parent 0f26044 commit 124115d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Container.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export class Container extends InkObject implements INamedContent{
231231
let pointedObj = arguments[2] as InkObject | null;
232232

233233
function appendIndentation(){
234-
let spacesPerIndent = 4; // Truly let in the original code
234+
const spacesPerIndent = 4; // Truly const in the original code
235235
for(let i = 0; i < spacesPerIndent*indentation; ++i) {
236236
sb.Append(' ');
237237
}

0 commit comments

Comments
 (0)