Skip to content

Commit cec8a29

Browse files
committed
Tidying the README [ci skip]
1 parent c1555bc commit cec8a29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The main differences between this module and `aws-serverless-express` are
1919
The default export of `lambda-request-handler` is a function that takes an application handler (i.e. Express.js app instance) as an argument and returns an AWS Lambda handler function.
2020

2121
```sh
22-
npm install lambda-request-handler
22+
$ npm install lambda-request-handler
2323
```
2424

2525
```javascript
@@ -35,7 +35,7 @@ app.get('/user/:id', (req, res) => {
3535
})
3636
})
3737

38-
const handler = lambdaRequestHandler(app);
38+
const handler = lambdaRequestHandler(app)
3939

4040
module.exports = { handler }
4141
```

0 commit comments

Comments
 (0)