Skip to content

Commit 95047f1

Browse files
committed
chore: address PR comments
1 parent 36df978 commit 95047f1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ as well as how to set up some common configuration patterns.
77

88
## APIs
99

10-
The AWS Encryption SDK provides two high-level APIS:
10+
The AWS Encryption SDK provides two high-level APIs:
1111
one-shot APIs that process the entire operation in memory
1212
and streaming APIs.
1313

@@ -38,13 +38,13 @@ enforcing certain algorithm suites or encryption context settings,
3838
reusing data keys across messages,
3939
or changing how you interact with keyrings.
4040
You can find these examples in
41-
[`examples/src/crypto_materials_managers`](./src/crypto_materials_manager).
41+
[`examples/src/crypto_materials_manager`](./src/crypto_materials_manager).
4242

4343
### Master Key Providers
4444

4545
Before there were keyrings, there were master key providers.
4646
Master key providers were the original configuration structure
47-
that we defined for defining how you want to protect your data keys.
47+
that we provided for defining how you want to protect your data keys.
4848
Keyrings provide a simpler experience and often more powerful configuration options,
4949
but if you need to use master key providers,
5050
need help migrating from master key providers to keyrings,

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ commands =
142142
[testenv:flake8-examples]
143143
basepython = {[testenv:flake8]basepython}
144144
# This does not actually ignore errors,
145-
# it just runs all commands regardless of whether any fail.
146-
# If any fail, the final result is still a fail.
145+
# it just runs all commands regardless of whether any fail.
146+
# If any fail, the final result will still fail.
147147
ignore_errors = true
148148
deps = {[testenv:flake8]deps}
149149
commands =
@@ -170,8 +170,8 @@ commands =
170170
[testenv:pylint-examples]
171171
basepython = {[testenv:pylint]basepython}
172172
# This does not actually ignore errors,
173-
# it just runs all commands regardless of whether any fail.
174-
# If any fail, the final result is still a fail.
173+
# it just runs all commands regardless of whether any fail.
174+
# If any fail, the final result will still fail.
175175
ignore_errors = true
176176
deps = {[testenv:pylint]deps}
177177
commands =

0 commit comments

Comments
 (0)