Skip to content

Commit 780e930

Browse files
chore: fix typos with spellchecker (#1248)
* run npx cspell aip/**/*.md * chore: revert auto-save --------- Co-authored-by: Noah Dietz <noahdietz@users.noreply.github.com>
1 parent ea44d9d commit 780e930

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

aip/auth/4114.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Document field **"mtlsRootUrl"** instead of generated via regex patterns.
6565

6666
### Obtaining the Default Device Certificate
6767

68-
The default device certicate **should** be procured using the
68+
The default device certificate **should** be procured using the
6969
[EndpointVerification][1] workflow, which fetches the certificate from a
7070
platform-specific credential store (ex. KeyChain in macOS) via a native helper.
7171

aip/auth/4117.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ endpoint.
208208
| region_url | No | This URL should be used to determine the current AWS region needed for the signed request construction when the region environment variables are not present. |
209209
| url | No | This AWS metadata server URL should be used to retrieve the access key, secret key and security token needed to sign the `GetCallerIdentity` request. The $ROLE_NAME should be retrieved from calling this endpoint without any parameter and then calling again with the returned role name appended to this URL: http://169.254.169.254/latest/meta-data/iam/security-credentials/$ROLE_NAME |
210210
| regional_cred_verification_url | Yes | This defines the regional AWS `GetCallerIdentity` action URL. This URL should be used to determine the AWS account ID and its roles. This should not actually be called by the Auth libraries. It should be called on the STS token server. The region should be substituted by SDK, e.g. `sts.eu-west-1.amazonaws`.com. |
211-
| imdsv2_session_token_url | No | Presence of this URL enforces the auth libraries to fetch a Session Token from AWS. This field is required for EC2 instances using IMDSv2. This Session Token would later be used while making calls to the metadata enpoint. |
211+
| imdsv2_session_token_url | No | Presence of this URL enforces the auth libraries to fetch a Session Token from AWS. This field is required for EC2 instances using IMDSv2. This Session Token would later be used while making calls to the metadata endpoint. |
212212

213213
The JSON file for AWS configuration files should have the following form:
214214

aip/client-libraries/4210.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ digraph {
5050
nodesep=0.3;
5151
center=true;
5252
53-
proto [ label="API Protobuf\nDescriptors" shape=rectancle fillcolor=aliceblue ];
53+
proto [ label="API Protobuf\nDescriptors" shape=rectangle fillcolor=aliceblue ];
5454
5555
subgraph cluster_code_generators {
5656
rank = same;

aip/client-libraries/4222.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ is as follows:
212212
this `path_template` syntax) to extract as the value paired with `key`
213213
- A variable segment of just `{key}` defaults to a template of `*` which
214214
matches 1 or more non-`/` symbols.
215-
- While `{key=*}` is technicaly valid syntax, the simpler syntax of
215+
- While `{key=*}` is technically valid syntax, the simpler syntax of
216216
`{key}` **should** be used.
217217
- A variable segment **must not** contain other variable segments. This
218218
syntax is not recursive.

aip/general/0008.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ types of clients or their authors, including but not limited to:
3636
- Asset inventories which can be used to audit and analyze resources.
3737
- Command line interfaces for exploration and simple automation.
3838
- Custom controllers (e.g. auto-scalers) which poll live state and adjust
39-
resource configruation accordingly.
39+
resource configuration accordingly.
4040
- [IaC][] clients for orchestration and automation of multiple resources.
4141
- Recommendation tools which provide guidance on which APIs are useful for
4242
specific use cases, and how to use them.

aip/general/0009.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ set fields as read-only and diligently preserve those values.
133133

134134
Examples of complexities that declarative clients abstract away include:
135135

136-
- Determing the appropriate imperative action (create / update / delete) to
136+
- Determining the appropriate imperative action (create / update / delete) to
137137
achieve desired state.
138138
- Ordering of these imperative actions.
139139

aip/general/0111.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defined:
2020
plane, such as virtual machines.
2121

2222
The term "plane" was originally used in networking architecture. Although system
23-
and network architecure often defines additional planes (e.g. control plane or
23+
and network architecture often defines additional planes (e.g. control plane or
2424
power planes), as the AIPs are focused on the interface, they are not defined in
2525
this AIP.
2626

aip/general/0128.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ placement:
1010
# Declarative-friendly interfaces
1111

1212
Many services need to interact with common DevOps tools, particularly those
13-
that create and manage network-addressible resources (such as virtual machines,
13+
that create and manage network-addressable resources (such as virtual machines,
1414
load balancers, database instances, and so on). These tools revolve around the
1515
principle of "configuration as code": the user specifies the complete intended
1616
landscape, and tooling is responsible for making whatever changes are necessary

aip/general/0130.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ operates upon.
2727
| **Standard collection methods**: operate on a collection of resources (List or Create). | [AIP-121][], [AIP-132][], [AIP-133][] | automatable | automatable | automatable |
2828
| **Standard resource methods**: fetch or mutate a single resource (Get, Update, Delete). | [AIP-121][], [AIP-131][], [AIP-134][], [AIP-135][] | automatable | automatable | automatable |
2929
| **Batch resource methods**: fetch or mutate multiple resources in a collection by name. | [AIP-231][], [AIP-233][], [AIP-234][], [AIP-235][] | may be used to optimize queries | automatable | automatable |
30-
| **Aggregated list methods**: fetch or mutate multiple resources of the same type across multiple collections. | [AIP-159][] | not useful nor automable | automatable | automatable |
30+
| **Aggregated list methods**: fetch or mutate multiple resources of the same type across multiple collections. | [AIP-159][] | not useful nor automatable | automatable | automatable |
3131
| *Custom Fetch Methods* | | | | |
3232
| **Custom collection fetch methods**: fetch information across a collection that cannot be expressed via a standard method. | [AIP-136][] | handwritten | automatable | automatable |
3333
| **Custom resource fetch methods**: fetch information for a single resource that cannot be expressed via a standard method. | [AIP-136][] | handwritten | automatable | automatable |

0 commit comments

Comments
 (0)