Skip to content

Commit 0903be7

Browse files
committed
spelling
1 parent 59fbe6b commit 0903be7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/deployment/lambda.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ If you ever want to remove the S3 bucket or Lambda functions that Serverless cre
254254

255255
## Middleware
256256

257-
In order to impelment event and result mutations, type-safe middleware can be passed to the `startServerAndCreateLambdaHandler` call. The API is as follows:
257+
In order to implement event and result mutations, type-safe middleware can be passed to the `startServerAndCreateLambdaHandler` call. The API is as follows:
258258

259259
```ts
260260
@@ -279,7 +279,7 @@ startServerAndCreateLambdaHandler(..., ..., {
279279
})
280280
```
281281

282-
An example use case would be for cookie modificaiton. The `APIGatewayProxyStructuredResultV2` type contains a property `cookies` that then mutate to multiple `Set-Cookie` headers.
282+
An example use case would be for cookie modification. The `APIGatewayProxyStructuredResultV2` type contains a property `cookies` that then mutate to multiple `Set-Cookie` headers.
283283

284284
```ts
285285
import {
@@ -319,7 +319,7 @@ More use-cases and API information can be found in the [library's README](https:
319319

320320
## Event extensions
321321

322-
In many cases, API Gateway events will have an authorizer infront of them that contains custom state that will be used for authorization during GraphQL resolution. All of the handlers that are packged with the library contain a generic type which allows you to explicitly extend the base event type. By passing an event with authorization information, that event type will be used during the creation of `contextValue` and for `middleware`. Below is an example, and more information can be found in the [library's README](https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda/blob/main/README.md#event-extensions).
322+
In many cases, API Gateway events will have an authorizer in front of them that contains custom state that will be used for authorization during GraphQL resolution. All of the handlers that are packaged with the library contain a generic type which allows you to explicitly extend the base event type. By passing an event with authorization information, that event type will be used during the creation of `contextValue` and for `middleware`. Below is an example, and more information can be found in the [library's README](https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda/blob/main/README.md#event-extensions).
323323

324324

325325
```ts

0 commit comments

Comments
 (0)