Skip to content

Commit 004dd16

Browse files
committed
Feat: fix to .ts files
1 parent 0cc24ba commit 004dd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_12/structs_ts/src/stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class Stack {
77
this.top = undefined;
88
}
99

10-
push(value: number): void {
10+
push(number: number): void {
1111
throw new Error('Not implemented');
1212
}
1313

0 commit comments

Comments
 (0)