From 27d1286780e4ff59ed172a7408a90b66963870a5 Mon Sep 17 00:00:00 2001 From: stigchristian Date: Thu, 9 Feb 2017 18:13:22 +0100 Subject: [PATCH] Fixed typo "tempalated" => "templated" (#21187) --- lib/ansible/modules/commands/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/commands/command.py b/lib/ansible/modules/commands/command.py index 4081c8c95d..73b13e72d1 100644 --- a/lib/ansible/modules/commands/command.py +++ b/lib/ansible/modules/commands/command.py @@ -95,7 +95,7 @@ EXAMPLES = ''' chdir: somedir/ creates: /path/to/database -- name: safely use tempalated variable to run command. Always use the quote filter to avoid injection issues. +- name: safely use templated variable to run command. Always use the quote filter to avoid injection issues. command: cat {{ myfile|quote }} register: myoutput '''