From 89a61b5b43adad64cecf1a5095565d5d70292fea Mon Sep 17 00:00:00 2001 From: Tim Baldwin Date: Wed, 20 Jul 2016 18:02:23 -0400 Subject: [PATCH] fixed word case (#16753) The word "times" should not be capitalized unless at the beginning of a sentence or in a proper noun. --- docsite/rst/playbooks_variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index 57b68a9670..f5b2fb0c67 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -929,7 +929,7 @@ like so:: - { role: app_user, name: Graham } - { role: app_user, name: John } -That's a bit arbitrary, but you can see how the same role was invoked multiple Times. In that example it's quite likely there was +That's a bit arbitrary, but you can see how the same role was invoked multiple times. In that example it's quite likely there was no default for 'name' supplied at all. Ansible can yell at you when variables aren't defined -- it's the default behavior in fact. So that's a bit about roles.