Skip to content

Commit 117a1bd

Browse files
authored
Merge pull request #220 from pieterocp/pedant-typos
fix: typos
2 parents ef8941e + 31df6ba commit 117a1bd

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ This Serverless Framework plugin supports the AWS service proxy integration feat
2121
- [Customizing request parameters](#customizing-request-parameters-1)
2222
- [Customizing request templates](#customizing-request-templates)
2323
- [Customize the Path Override in API Gateway](#customize-the-path-override-in-api-gateway)
24-
- [Can use greedy, for deeper Folders](#can-use-greedy--for-deeper-folders)
24+
- [Can use greedy, for deeper Folders](#can-use-greedy-for-deeper-folders)
2525
- [Customizing responses](#customizing-responses-1)
26-
- [Allow Bindary Types](#allow-binary-type)
26+
- [Allow Binary Types](#allow-binary-type)
2727
- [SNS](#sns)
2828
- [Customizing responses](#customizing-responses-2)
2929
- [DynamoDB](#dynamodb)
@@ -51,7 +51,7 @@ serverless plugin install -n serverless-apigateway-service-proxy
5151
## Supported AWS services
5252

5353
Here is a services list which this plugin supports for now. But will expand to other services in the feature.
54-
Please pull request if you are intersted in it.
54+
Please pull request if you are interested in it.
5555

5656
- Kinesis Streams
5757
- SQS
@@ -351,11 +351,11 @@ custom:
351351
```
352352

353353
This will result in API Gateway setting the Path Override attribute to `{bucket}/{folder}/{file}.xml`
354-
So for example if you navigate to the API Gatway endpoint `/language/en` it will fetch the file in S3 from `{bucket}/language/en.xml`
354+
So for example if you navigate to the API Gateway endpoint `/language/en` it will fetch the file in S3 from `{bucket}/language/en.xml`
355355

356356
##### Can use greedy, for deeper Folders
357357

358-
The forementioned example can also be shortened by a greedy approach. Thanks to @taylorreece for mentioning this.
358+
The aforementioned example can also be shortened by a greedy approach. Thanks to @taylorreece for mentioning this.
359359

360360
```yaml
361361
custom:

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ServerlessApigatewayServiceProxy {
146146
let serviceProxyMessages = ''
147147

148148
const endpointInfo = this.gatheredData.info.endpoints
149-
message += `${chalk.yellow.underline('Serverless APIGateway Service Proxy OutPuts')}\n`
149+
message += `${chalk.yellow.underline('Serverless APIGateway Service Proxy Outputs')}\n`
150150
message += `${chalk.yellow('endpoints:')}`
151151

152152
proxies.forEach((serviceProxy) => {

lib/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ describe('#index()', () => {
375375
}
376376

377377
const expectedMessage = `${chalk.yellow.underline(
378-
'Serverless APIGateway Service Proxy OutPuts'
378+
'Serverless APIGateway Service Proxy Outputs'
379379
)}
380380
${chalk.yellow('endpoints:')}
381381
POST - https://xxxxxx.execute-api.us-east-1.amazonaws.com/dev/kinesis

lib/utils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('#utils()', () => {
2222
})
2323

2424
describe('#getAllServiceProxies()', () => {
25-
it('should return this plugin configutration', () => {
25+
it('should return this plugin configuration', () => {
2626
serverless.service.custom = {
2727
apiGatewayServiceProxies: [
2828
{

0 commit comments

Comments
 (0)