Skip to content

Commit a56fc99

Browse files
committed
Fix some typos
1 parent 043c790 commit a56fc99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev/ansible-ssh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import os
1111
from collections import defaultdict
1212

1313
def _optional_arg(prototype, *values):
14-
# returns empty string if any of the the values are falsey
14+
# returns empty string if any of the values are falsey
1515
filtered = [value for value in values if value]
1616
return prototype.format(*values) if len(values) == len(filtered) else ""
1717

docs/production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ and referenced from the `site` and `production` environments, e.g.:
6767
- Vault-encrypt secrets. Running the `generate-passwords.yml` playbook creates
6868
a secrets file at `environments/$ENV/inventory/group_vars/all/secrets.yml`.
6969
To ensure staging environments are a good model for production this should
70-
generally be moved into the `site` environment. It should be be encrypted
70+
generally be moved into the `site` environment. It should be encrypted
7171
using [Ansible vault](https://docs.ansible.com/ansible/latest/user_guide/vault.html)
7272
and then committed to the repository.
7373

environments/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ varibles are set e.g role variables for the `stackhpc.nfs` role can be found in
9494

9595
## Parent pointers
9696

97-
As the environments form a chain, a symlink pointing to the parent can be be created.
97+
As the environments form a chain, a symlink pointing to the parent can be created.
9898

9999
`ln -s ../common/ parent`
100100

0 commit comments

Comments
 (0)