From 9142cfc86f34a6f8fe6c1f39da6c032c1e0859da Mon Sep 17 00:00:00 2001 From: Alicia Cozine <879121+acozine@users.noreply.github.com> Date: Sun, 9 Dec 2018 17:05:53 -0600 Subject: [PATCH] fixes typos in ansible-vault docs (#49671) --- lib/ansible/cli/vault.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/cli/vault.py b/lib/ansible/cli/vault.py index a5955e7132..0407680919 100644 --- a/lib/ansible/cli/vault.py +++ b/lib/ansible/cli/vault.py @@ -429,7 +429,7 @@ class VaultCLI(CLI): display.display("Decryption successful", stderr=True) def execute_create(self): - ''' create and open a file in an editor that will be encryped with the provided vault secret when closed''' + ''' create and open a file in an editor that will be encrypted with the provided vault secret when closed''' if len(self.args) > 1: raise AnsibleOptionsError("ansible-vault create can take only one filename argument") @@ -438,7 +438,7 @@ class VaultCLI(CLI): vault_id=self.encrypt_vault_id) def execute_edit(self): - ''' open and decrypt an existing vaulted file in an editor, that will be encryped again when closed''' + ''' open and decrypt an existing vaulted file in an editor, that will be encrypted again when closed''' for f in self.args: self.editor.edit_file(f)