Skip to content

Commit

Permalink
Fix typos in documentation and error message
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyrZotov committed Dec 7, 2023
1 parent bbdb62b commit 1f3b5e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ provider "onepassword" {
## Use with service accounts:
Retry mechanism is implemented when using provider with service accounts. Each retry fast forwards to the [service account rate limit](https://developer.1password.com/docs/service-accounts/rate-limits/).

It's recommended to limit the number of parallel resource operations. It can be done by using `-parallelism=n` flag when do `terraform apply`, where `n` is the number of parallel resource operations that defaults to `10`.
It's recommended to limit the number of parallel resource operations. It can be done by using `-parallelism=n` flag when running `terraform apply`, where `n` is the number of parallel resource operations (the default is `10`).
```
terraform apply `-parallelism=n`
```
Expand Down
2 changes: 1 addition & 1 deletion onepassword/cli/op_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestWithRetry(t *testing.T) {
},
validate: func(item *onepassword.Item, err error) {
if err == nil {
t.Error("Action should fail it when error is 409")
t.Error("Action should fail when error is 409")
}
if item != nil {
t.Error("Item should be nil when error is 409")
Expand Down
2 changes: 1 addition & 1 deletion templates/index.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use a service account token, you must install [1Password CLI](https://develop
## Use with service accounts:
Retry mechanism is implemented when using provider with service accounts. Each retry fast forwards to the [service account rate limit](https://developer.1password.com/docs/service-accounts/rate-limits/).

It's recommended to limit the number of parallel resource operations. It can be done by using `-parallelism=n` flag when do `terraform apply`, where `n` is the number of parallel resource operations that defaults to `10`.
It's recommended to limit the number of parallel resource operations. It can be done by using `-parallelism=n` flag when running `terraform apply`, where `n` is the number of parallel resource operations (the default is `10`).
```
terraform apply `-parallelism=n`
```
Expand Down

0 comments on commit 1f3b5e9

Please sign in to comment.