Skip to content

Commit 8a5e707

Browse files
authored
add support for Vale (#1408)
1 parent fc26b8f commit 8a5e707

File tree

16 files changed

+1258
-3
lines changed

16 files changed

+1258
-3
lines changed

.vale.ini

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
StylesPath = vale-styles
2+
Vocab = Blog
3+
Packages = write-good
4+
MinAlertLevel = warning
5+
[*.md]
6+
BasedOnStyles = Vale, write-good
7+
BlockIgnores = (?s) *(\{\{<.*?>\}\})

content/en/tutorials/java-notification-app/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public class AwsConfiguration {
217217
}
218218
```
219219

220-
In the above code, we have used the `@Autowired` annotation to autowrire the dependencies that are required for the application (`SqsClient` `SesClient`, and `notificationQueueUrl` in this case).
220+
In the above code, we have used the `@Autowired` annotation to autowire the dependencies that are required for the application (`SqsClient` `SesClient`, and `notificationQueueUrl` in this case).
221221
Now that we have got the URL of the queue created in the previous step, we can move on to the next step.
222222

223223
{{< callout "note" >}}

content/en/tutorials/s3-static-website-terraform/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,5 +392,5 @@ You can use the [LocalStack App](https://app.localstack.cloud) to view the creat
392392
Using LocalStack, you can perform various operations using emulated S3 buckets and other AWS services without creating any real AWS resources.
393393

394394
The code for this tutorial can be found in our [LocalStack Terraform samples over GitHub](https://github.com/localstack/localstack-terraform-samples/tree/master/s3-static-website).
395-
Please make sure to adjust the paths for the html files in `main.tf`.
395+
Please make sure to adjust the paths for the HTML files in `main.tf`.
396396
Further documentation for S3 is available on our [S3 documentation]({{<ref "user-guide/aws/s3" >}}).

content/en/tutorials/schema-evolution-glue-msk/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ We create the new producer by executing the following steps:
748748
mvn clean generate-sources
749749
```
750750
751-
- Once the classes have been generatated, the producer code needs to be adjusted (remove the usage of `setCustomer` in the producer's `getRecord`, since the method does not exist anymore).
751+
- Once the classes have been generated, the producer code needs to be adjusted (remove the usage of `setCustomer` in the producer's `getRecord`, since the method does not exist anymore).
752752
- Configure the producer to automatically register its schema version in case it's not yet registered by setting the additional property `AWSSchemaRegistryConstants.SCHEMA_AUTO_REGISTRATION_SETTING` to `true`:
753753
754754
```java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
(?i)DynamoDB
2+
(?i)LocalStack
3+
awslocal
4+
(?i)GitHub
5+
SDKs
6+
(?i)AWS
7+
(?i)sqs
8+
(?i)sns
9+
(?i)ses
10+
(?i)ecs
11+
Dockerfile
12+
mkdir
13+
serverless
14+
Serverless
15+
(?i)CloudFormation
16+
parseable
17+
transactionally
18+
tflocal
19+
APIs
20+
Testcontainers
21+
VMs
22+
Ryuk
23+
Cognito
24+
CloudFront
25+
npm
26+
subnet
27+
Fargate
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)