Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 0a90eae

Browse files
authored
Fix typos (#1744)
1 parent 362d7e5 commit 0a90eae

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

content/en/references/internal-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ $ curl -v --request POST --header "Content-Type: application/json" --data '{"ac
3636

3737
The API path for the AWS internal resources is `/_aws`.
3838
These endpoints offer LocalStack-specific features in addition to the ones offered by the AWS services.
39-
For instance, `/aws/sqs/messages` conveniently access all messages withing a SQS queue, without deleting them.
39+
For instance, `/aws/sqs/messages` conveniently access all messages within a SQS queue, without deleting them.

content/en/references/network-troubleshooting/images-src/assets/script.svg

Lines changed: 1 addition & 1 deletion
Loading

content/en/tutorials/ecs-ecr-container-app/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Resources:
156156

157157
InternetGateway:
158158
Type: AWS::EC2::InternetGateway
159-
GatewayAttachement:
159+
GatewayAttachment:
160160
Type: AWS::EC2::VPCGatewayAttachment
161161
Properties:
162162
VpcId: !Ref 'VPC'
@@ -167,7 +167,7 @@ Resources:
167167
VpcId: !Ref 'VPC'
168168
PublicRoute:
169169
Type: AWS::EC2::Route
170-
DependsOn: GatewayAttachement
170+
DependsOn: GatewayAttachment
171171
Properties:
172172
RouteTableId: !Ref 'PublicRouteTable'
173173
DestinationCidrBlock: '0.0.0.0/0'

content/en/tutorials/lambda-ecr-container-images/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Run the following command to create the function:
187187

188188
{{< callout "note">}}
189189
Before creating the lambda function, please double check under which architecture you have built your image.
190-
If your image is built as arm64, you need to specify the lambda architecture when deploying or set `LAMBDA_IGNORE_ARCHTIECTURE=1` when starting LocalStack.
190+
If your image is built as arm64, you need to specify the lambda architecture when deploying or set `LAMBDA_IGNORE_ARCHITECTURE=1` when starting LocalStack.
191191
More information can be found [in our documentation regarding ARM support.]({{< ref "arm64-support" >}})
192192
{{< /callout >}}
193193

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ $ awslocal kafka describe-cluster --cluster-arn "arn:aws:kafka:us-east-1:0000000
541541
}
542542
```
543543

544-
Once the `State` is `ACTIV`, the cluster is ready to be used.
544+
Once the `State` is `ACTIVE`, the cluster is ready to be used.
545545
Now it's time to create our Glue Schema Registry:
546546

547547
```bash

content/en/user-guide/aws/dms/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ The Resource Browser supports CRD (Create, Read, Delete) operations on DMS resou
163163
164164
* **Create Endpoint**: To create a new endpoint, click on the **Create Endpoint** button and fill in necessary details such as the Endpoint Identifier, Endpoint Type, and Engine Name.
165165
* **View Endpoint**: To see the details of an endpoint, click on its ARN.
166-
You can further click **Connections** and test a conenction by specifying the Replication Instance ARN.
166+
You can further click **Connections** and test a connection by specifying the Replication Instance ARN.
167167
* **Delete Endpoint**: To remove an endpoint, select it, navigate to **Actions**, and click **Remove Selected**.
168168
169169
### Replication Tasks

content/en/user-guide/aws/ec2/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ Please refer to [Libvirt Wiki](https://wiki.libvirt.org/Failed_to_connect_to_the
502502
{{< /callout >}}
503503

504504
The Libvirt VM manager currently does not have full support for persistence.
505-
Underlying virtual machines and volumes are not persisted, only their mock respresentations are.
505+
Underlying virtual machines and volumes are not persisted, only their mock representations are.
506506

507507
### AMIs
508508

content/en/user-guide/aws/efs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Run the following command to apply a policy to the file system created in the pr
7373
{{< command >}}
7474
$ awslocal efs put-file-system-policy \
7575
--file-system-id <FILE_SYSTEM_ID> \
76-
--policy "{\"Version\":\"2012-10-17\",\"Id\":\"ExamplePolicy01\",\"Statement\":[{\"Sid\":\"ExampleSatement01\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"elasticfilesystem:ClientMount\",\"elasticfilesystem:ClientWrite\"],\"Resource\":\"arn:aws:elasticfilesystem:us-east-1:000000000000:file-system/fs-34feac549e66b814\"}]}"
76+
--policy "{\"Version\":\"2012-10-17\",\"Id\":\"ExamplePolicy01\",\"Statement\":[{\"Sid\":\"ExampleStatement01\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"elasticfilesystem:ClientMount\",\"elasticfilesystem:ClientWrite\"],\"Resource\":\"arn:aws:elasticfilesystem:us-east-1:000000000000:file-system/fs-34feac549e66b814\"}]}"
7777
{{< /command >}}
7878

7979
You can list the file system policies using the [`DescribeFileSystemPolicy`](https://docs.aws.amazon.com/efs/latest/ug/API_DescribeFileSystemPolicy.html) API.

content/en/user-guide/aws/pca/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ $ awslocal acm-pca issue-certificate \
111111
</disable-copy>
112112
{{< /command >}}
113113

114-
The CA certificate is now created and its ARN is indicated by the `CertficiateArn` parameter.
114+
The CA certificate is now created and its ARN is indicated by the `CertificateArn` parameter.
115115

116116
### Import CA Certificate
117117

content/en/user-guide/aws/sns/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ You can access the subscription tokens in JSON format through `GET /_aws/sns/sub
384384

385385
<br>
386386

387-
In this example, we will susbcribe to an external SNS integration not confirming the subscription, retrieve the subscription token and manually confirm it:
387+
In this example, we will subscribe to an external SNS integration not confirming the subscription, retrieve the subscription token and manually confirm it:
388388

389389
Create an SNS topic, and create a subscription to a external HTTP SNS integration:
390390

0 commit comments

Comments
 (0)