diff --git a/step2-01/README.md b/step2-01/README.md index efb707d..55d8e2c 100644 --- a/step2-01/README.md +++ b/step2-01/README.md @@ -195,7 +195,7 @@ Inside `exercise/src/stack.ts`, create a generic class for a `Stack` complete > Hint: the JavaScript array already has `push()` and `pop()` implemented for you. That can be your backing store. -In `index.ts`, create a `Stack` and use `console.log()` to demonstrate its functionality. +In `exercise/src/index.ts`, create a `Stack` and use `console.log()` to demonstrate its functionality. ## Spread and Destructuring