File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ as well as how to set up some common configuration patterns.
7
7
8
8
## APIs
9
9
10
- The AWS Encryption SDK provides two high-level APIS :
10
+ The AWS Encryption SDK provides two high-level APIs :
11
11
one-shot APIs that process the entire operation in memory
12
12
and streaming APIs.
13
13
@@ -38,13 +38,13 @@ enforcing certain algorithm suites or encryption context settings,
38
38
reusing data keys across messages,
39
39
or changing how you interact with keyrings.
40
40
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 ) .
42
42
43
43
### Master Key Providers
44
44
45
45
Before there were keyrings, there were master key providers.
46
46
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.
48
48
Keyrings provide a simpler experience and often more powerful configuration options,
49
49
but if you need to use master key providers,
50
50
need help migrating from master key providers to keyrings,
Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ commands =
142
142
[testenv:flake8-examples]
143
143
basepython = {[testenv:flake8]basepython}
144
144
# 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.
147
147
ignore_errors = true
148
148
deps = {[testenv:flake8]deps}
149
149
commands =
@@ -170,8 +170,8 @@ commands =
170
170
[testenv:pylint-examples]
171
171
basepython = {[testenv:pylint]basepython}
172
172
# 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.
175
175
ignore_errors = true
176
176
deps = {[testenv:pylint]deps}
177
177
commands =
You can’t perform that action at this time.
0 commit comments