From 3d894b0f13af56860a184e92e258893ef70ccc8d Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 4 Feb 2016 20:10:37 -0500 Subject: [PATCH] corrected mizpellz --- docsite/rst/porting_guide_2.0.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docsite/rst/porting_guide_2.0.rst b/docsite/rst/porting_guide_2.0.rst index 33ad202ff1d..b2b6b15dd1c 100644 --- a/docsite/rst/porting_guide_2.0.rst +++ b/docsite/rst/porting_guide_2.0.rst @@ -157,12 +157,12 @@ Here are some corner cases encountered when updating, these are mostly caused by with_items: "{{vars['myvar_' + res_of_name]}}" - Or `hostvasrs[inventory_hostname]['myvar_' + rest_of_name]` if appropriate. + Or `hostvars[inventory_hostname]['myvar_' + rest_of_name]` if appropriate. -* Mispelled directives:: +* Misspelled directives:: - task: dostuf - became: yes + becom: yes The task always ran without using privilege escalation (for that you need `become`) but was also silently ignored so the play 'ran' even though it should not, now this is a parsing error. @@ -194,7 +194,7 @@ Here are some corner cases encountered when updating, these are mostly caused by with_items: "{{var1 + var2}}" - The bare feature itself is deprecated as an undefined variable is indistiguishable from a string which makes it dificult to display a proper error. + The bare feature itself is deprecated as an undefined variable is indistiguishable from a string which makes it difficult to display a proper error. Porting plugins ===============