Skip to content

Commit 7ff9dda

Browse files
committed
add code comment
1 parent d5736b4 commit 7ff9dda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/visuals/icepath/components.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ async function run(fp: string, file: string, shouldStop: () => boolean, setTermi
274274
const a = pop(stack);
275275
const b = pop(stack);
276276
const c = pop(stack);
277-
stack.push(b);
278-
stack.push(a);
279-
stack.push(c);
277+
stack.push(b); // bottom
278+
stack.push(a); // middle
279+
stack.push(c); // top
280280
continue;
281281
}
282282

0 commit comments

Comments
 (0)