I found a typo in <https://docs.serverless-stack.c...
# guide
i
I found a typo in https://docs.serverless-stack.com/installation .
scope
seems to be a typo for
stack
. Am I right?
Copy code
export function MyStack({ stack }: StackContext) {
  scope.stage; // "dev"
  scope.region; // "us-east-1"
  scope.name; // "my-sst-app"
}
m
it's @iery
Copy code
export function MyStack({ stack, app }: StackContext) {
  app.stage; // "dev"
  app.region; // "us-east-1"
  app.name; // "my-sst-app"
}
i
Copy code
app.name; // "my-sst-app"
It looks correct. Thanks.
f
Nice catch! Updated the doc.