We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f26044 commit 124115dCopy full SHA for 124115d
src/Container.ts
@@ -231,7 +231,7 @@ export class Container extends InkObject implements INamedContent{
231
let pointedObj = arguments[2] as InkObject | null;
232
233
function appendIndentation(){
234
- let spacesPerIndent = 4; // Truly let in the original code
+ const spacesPerIndent = 4; // Truly const in the original code
235
for(let i = 0; i < spacesPerIndent*indentation; ++i) {
236
sb.Append(' ');
237
}
0 commit comments